abuild/Makefile

102 lines
2.4 KiB
Makefile
Raw Normal View History

2008-10-18 08:09:24 +00:00
2009-05-08 13:33:34 +00:00
PACKAGE := abuild
2011-11-01 08:51:51 +00:00
VERSION := 2.11.2
2008-10-18 08:09:24 +00:00
2009-06-03 11:24:29 +00:00
prefix ?= /usr
sysconfdir ?= /etc
datadir ?= $(prefix)/share/$(PACKAGE)
abuildrepo ?= ~/.cache/abuild
2008-10-18 08:09:24 +00:00
LUA_VERSION = 5.1
LUA_SHAREDIR ?= $(prefix)/share/lua/$(LUA_VERSION)/
SCRIPTS := abuild buildrepo abuild-keygen abuild-sign newapkbuild \
abump apkgrel ap buildlab apkbuild-cpan
USR_BIN_FILES := $(SCRIPTS) abuild-tar
2009-05-08 13:33:34 +00:00
SAMPLES := sample.APKBUILD sample.initd sample.confd \
sample.pre-install sample.post-install
SCRIPT_SOURCES := $(addsuffix .in,$(SCRIPTS))
DISTFILES=$(SCRIPT_SOURCES) $(SAMPLES) Makefile abuild.conf
GIT_REV := $(shell test -d .git && git describe || echo exported)
ifneq ($(GIT_REV), exported)
FULL_VERSION := $(patsubst $(PACKAGE)-%,%,$(GIT_REV))
FULL_VERSION := $(patsubst v%,%,$(FULL_VERSION))
else
FULL_VERSION := $(VERSION)
endif
CHMOD := chmod
2009-05-08 13:33:34 +00:00
SED := sed
TAR := tar
SED_REPLACE := -e 's:@VERSION@:$(FULL_VERSION):g' \
-e 's:@prefix@:$(prefix):g' \
-e 's:@sysconfdir@:$(sysconfdir):g' \
2009-06-03 11:24:29 +00:00
-e 's:@datadir@:$(datadir):g' \
-e 's:@abuildrepo@:$(abuildrepo):g'
2009-05-08 13:33:34 +00:00
SSL_CFLAGS := $(shell pkg-config --cflags openssl)
SSL_LIBS := $(shell pkg-config --libs openssl)
2009-05-08 13:33:34 +00:00
.SUFFIXES: .sh.in .in
.sh.in.sh:
${SED} ${SED_REPLACE} ${SED_EXTRA} $< > $@
${CHMOD} +x $@
2009-05-08 13:33:34 +00:00
.in:
${SED} ${SED_REPLACE} ${SED_EXTRA} $< > $@
${CHMOD} +x $@
2009-05-08 13:33:34 +00:00
P=$(PACKAGE)-$(VERSION)
2009-05-08 13:33:34 +00:00
all: $(USR_BIN_FILES)
2009-05-08 13:33:34 +00:00
clean:
@rm -f $(USR_BIN_FILES)
2009-05-08 13:33:34 +00:00
abuild-tar: abuild-tar.c
$(CC) -o $@ $^ -Wl,--as-needed $(SSL_LIBS)
abuild-tar.static: abuild-tar.c
$(CC) -o $@ -static $(SSL_LIBS) $^
2009-05-08 13:33:34 +00:00
2008-10-18 08:09:24 +00:00
help:
@echo "$(P) makefile"
@echo "usage: make install [ DESTDIR=<path> ]"
@echo " make dist"
install: $(USR_BIN_FILES) $(SAMPLES) abuild.conf functions.sh aports.lua
2008-10-30 15:55:25 +00:00
mkdir -p $(DESTDIR)/$(prefix)/bin $(DESTDIR)/$(sysconfdir) \
2009-01-03 10:05:12 +00:00
$(DESTDIR)/$(datadir)
for i in $(USR_BIN_FILES); do\
install -m 755 $$i $(DESTDIR)/$(prefix)/bin/$$i;\
done
if [ -n "$(DESTDIR)" ] || [ ! -f "/$(sysconfdir)"/abuild.conf ]; then\
cp abuild.conf $(DESTDIR)/$(sysconfdir)/; \
fi
cp $(SAMPLES) $(DESTDIR)/$(prefix)/share/abuild
2009-01-03 10:05:12 +00:00
cp functions.sh $(DESTDIR)/$(datadir)/
mkdir -p $(DESTDIR)$(LUA_SHAREDIR)
cp aports.lua $(DESTDIR)$(LUA_SHAREDIR)/
2008-10-18 08:09:24 +00:00
dist: $(P).tar.bz2
2008-10-18 08:09:24 +00:00
$(P).tar.bz2: $(DISTFILES)
2008-10-18 08:09:24 +00:00
rm -rf $(P)
mkdir -p $(P)
cp $(DISTFILES) $(P)/
tar -cjf $@ $(P)
2008-10-18 08:09:24 +00:00
rm -rf $(P)
2010-11-19 10:30:07 +00:00
.gitignore: Makefile
echo "*.tar.bz2" > $@
for i in $(USR_BIN_FILES); do\
echo $$i >>$@;\
done
2008-10-18 08:09:24 +00:00
.PHONY: install dist