Start integration of void-installer and start conversion to non-busybox utils.
This commit is contained in:
16
Makefile
16
Makefile
@@ -1,17 +1,23 @@
|
||||
GITVER := $(shell git rev-parse HEAD)
|
||||
VERSION = 0.12
|
||||
VERSION = 0.13
|
||||
PREFIX ?= /usr/local
|
||||
SBINDIR ?= $(PREFIX)/sbin
|
||||
SHAREDIR ?= $(PREFIX)/share
|
||||
DRACUTMODDIR ?= $(PREFIX)/lib/dracut/modules.d/01vmklive
|
||||
|
||||
all:
|
||||
sed -e "s|@@MKLIVE_VERSION@@|$(VERSION) $(GITVER)|g" mklive.sh.in > mklive.sh
|
||||
SHIN += $(shell find -type f -name '*.sh.in')
|
||||
SCRIPTS += $(SHIN:.sh.in=.sh)
|
||||
|
||||
%.sh: %.sh.in
|
||||
sed -e "s|@@MKLIVE_VERSION@@|$(VERSION) $(GITVER)|g" $^ > $@
|
||||
|
||||
all: $(SCRIPTS)
|
||||
|
||||
install: all
|
||||
install -d $(DESTDIR)$(SBINDIR)
|
||||
install -m755 mklive.sh $(DESTDIR)$(SBINDIR)/void-mklive
|
||||
install -m755 void-mkrootfs.sh $(DESTDIR)$(SBINDIR)/void-mkrootfs
|
||||
install -m755 mkrootfs.sh $(DESTDIR)$(SBINDIR)/void-mkrootfs
|
||||
install -m755 installer.sh $(DESTDIR)$(SBINDIR)/void-installer
|
||||
install -d $(DESTDIR)$(DRACUTMODDIR)
|
||||
install -m755 dracut/*.sh $(DESTDIR)$(DRACUTMODDIR)
|
||||
install -d $(DESTDIR)$(SHAREDIR)/void-mklive
|
||||
@@ -19,7 +25,7 @@ install: all
|
||||
install -m644 isolinux/*.cfg* $(DESTDIR)$(SHAREDIR)/void-mklive
|
||||
|
||||
clean:
|
||||
-rm -f mklive.sh
|
||||
-rm -f *.sh
|
||||
|
||||
dist:
|
||||
@echo "Building distribution tarball for tag: v$(VERSION) ..."
|
||||
|
Reference in New Issue
Block a user