diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-07-02 11:01:04 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-07-02 11:10:04 +0200 |
commit | 8c12f9f61e19759e47dced9674f902376f1f7c28 (patch) | |
tree | 1301b89483c0ef08dacf4efd4e08e34904ed8580 /Makefile | |
parent | d1b6da646eb90a16aa1e4553b33725144298a5ff (diff) | |
download | abuild-8c12f9f61e19759e47dced9674f902376f1f7c28.tar.bz2 abuild-8c12f9f61e19759e47dced9674f902376f1f7c28.tar.xz |
abuild: automatically replace the config.sub with our version
introduce post_unpack that by default will search for config.sub and
config.guess and replace those if found.
we ship our own version of those files
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -16,10 +16,11 @@ SCRIPTS := abuild buildrepo abuild-keygen abuild-sign newapkbuild \ USR_BIN_FILES := $(SCRIPTS) abuild-tar abuild-sudo SAMPLES := sample.APKBUILD sample.initd sample.confd \ sample.pre-install sample.post-install +AUTOTOOLS_TOOLCHAIN_FILES := config.sub config.guess SCRIPT_SOURCES := $(addsuffix .in,$(SCRIPTS)) -DISTFILES=$(SCRIPT_SOURCES) $(SAMPLES) Makefile abuild.conf +DISTFILES=$(SCRIPT_SOURCES) $(SAMPLES) Makefile abuild.conf GIT_REV := $(shell test -d .git && git describe || echo exported) ifneq ($(GIT_REV), exported) @@ -43,7 +44,7 @@ SED_REPLACE := -e 's:@VERSION@:$(FULL_VERSION):g' \ SSL_CFLAGS = $(shell pkg-config --cflags openssl) SSL_LIBS = $(shell pkg-config --libs openssl) -LDFLAGS ?= +LDFLAGS ?= OBJS-abuild-tar = abuild-tar.o LIBS-abuild-tar = $(SSL_LIBS) @@ -62,7 +63,7 @@ OBJS-abuild-sudo = abuild-sudo.o P=$(PACKAGE)-$(VERSION) -all: $(USR_BIN_FILES) +all: $(USR_BIN_FILES) clean: @rm -f $(USR_BIN_FILES) @@ -97,7 +98,8 @@ install: $(USR_BIN_FILES) $(SAMPLES) abuild.conf functions.sh aports.lua if [ -n "$(DESTDIR)" ] || [ ! -f "/$(sysconfdir)"/abuild.conf ]; then\ cp abuild.conf $(DESTDIR)/$(sysconfdir)/; \ fi - cp $(SAMPLES) $(DESTDIR)/$(prefix)/share/abuild + cp $(SAMPLES) $(DESTDIR)/$(prefix)/share/abuild/ + cp $(AUTOTOOLS_TOOLCHAIN_FILES) $(DESTDIR)/$(prefix)/share/abuild/ cp functions.sh $(DESTDIR)/$(datadir)/ mkdir -p $(DESTDIR)$(LUA_SHAREDIR) cp aports.lua $(DESTDIR)$(LUA_SHAREDIR)/ |