maemo: Fixed remake of strongswan package.

This commit is contained in:
Tobias Brunner 2011-02-08 15:04:06 +01:00
parent caf20266e0
commit f1e98699c6
1 changed files with 5 additions and 4 deletions

View File

@ -5,22 +5,23 @@ TARGETVERSION:=4.5.0+$(VERSION)
ORIGNAME:=strongswan-$(VERSION)
ORIGSRC:=$(BUILD)/strongswan_$(TARGETVERSION).orig.tar.gz
package: $(ORIGSRC) prepare
package: prepare
cd $(BUILD)/$(ORIGNAME) && \
dpkg-buildpackage -rfakeroot -sa > /dev/null
source: $(ORIGSRC) prepare
source: prepare
cd $(BUILD)/$(ORIGNAME) && \
dpkg-buildpackage -rfakeroot -sa -S > /dev/null
prepare:
prepare: $(ORIGSRC)
rm -Rf $(BUILD)/$(ORIGNAME)
tar -zx -C $(BUILD) -f $(ORIGSRC)
debchange -b -v $(TARGETVERSION)-1
cp -R debian $(BUILD)/$(ORIGNAME)
$(ORIGSRC): $(SOURCE)/Makefile | $(BUILD)
make -j -C $(SOURCE) dist-gzip > /dev/null
mv $(SOURCE)/$(ORIGNAME).tar.gz $(ORIGSRC)
tar -zx -C $(BUILD) -f $(ORIGSRC)
$(SOURCE)/Makefile: $(SOURCE)/configure
cd $(SOURCE) && ./configure --disable-gmp > /dev/null