mirror of
https://gitlab.com/Nanolx/patchimage.git
synced 2024-11-24 10:09:22 +01:00
ea0e6c921d
don't download the files from the interwebs, instead use files supplied and installed with patchimage
15 lines
354 B
Makefile
15 lines
354 B
Makefile
all:
|
|
@echo "nothing to do"
|
|
|
|
install:
|
|
mkdir -p $(DESTDIR)/usr/bin/
|
|
mkdir -p $(DESTDIR)/usr/share/patchimage/
|
|
cp -rv data database override patches script.d tools $(DESTDIR)/usr/share/patchimage/
|
|
install -m755 patchimage.sh $(DESTDIR)/usr/bin/patchimage
|
|
|
|
uninstall:
|
|
rm -rf $(DESTDIR)/usr/share/patchimage
|
|
rm -f $(DESTDIR)/usr/bin/patchimage
|
|
|
|
clean:
|