diff options
-rw-r--r-- | packages/maemo-strongswan/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/packages/maemo-strongswan/Makefile b/packages/maemo-strongswan/Makefile index d913eb402..73ee5b758 100644 --- a/packages/maemo-strongswan/Makefile +++ b/packages/maemo-strongswan/Makefile @@ -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 |