First attempt at a makefile for the archiso package
Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
eb3e9b28da
commit
e686cf5dcf
16
Makefile
Normal file
16
Makefile
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
all:
|
||||||
|
|
||||||
|
install:
|
||||||
|
# install to sbin since script only usable by root
|
||||||
|
mkdir -p $(DESTDIR)/usr/sbin
|
||||||
|
install -m 755 mkarchiso $(DESTDIR)/usr/sbin
|
||||||
|
# testiso can be used by anyone
|
||||||
|
mkdir -p $(DESTDIR)/usr/bin
|
||||||
|
install -m 755 testiso $(DESTDIR)/usr/bin
|
||||||
|
# hooks/install are needed by mkinitcpio
|
||||||
|
mkdir -p $(DESTDIR)/lib/initcpio/{hooks,install}
|
||||||
|
install -m 644 hooks/{archiso,boot-cd,boot-usb} $(DESTDIR)/lib/initcpio/hooks/
|
||||||
|
install -m 644 install/{archiso,boot-cd,boot-usb} $(DESTDIR)/lib/initcpio/install/
|
||||||
|
# install default config in a sane location
|
||||||
|
mkdir -p $(DESTDIR)/usr/share/archiso
|
||||||
|
cp -R default-config $(DESTDIR)/usr/share/archiso/
|
Loading…
Reference in New Issue
Block a user