diff options
| -rwxr-xr-x | Makefile | 12 | 
1 files changed, 8 insertions, 4 deletions
| @@ -112,15 +112,19 @@ build_snap:  	mkdir -p dist  	mv $(APPNAME)* dist/ +testfoo: +	dch -v $(VERSION) -M "debian package generated from the git repository";\ +  build_deb:  tgz  	echo "[+] building deb..."  	@if [ $(BUILD_RELEASE) = no ]; then\ -		echo "[!] BUILD_RELEASE=no, incrementing changelog";\ -		dch -v $(VERSION) -M "debian package generated from the git repository";\ +		dch -v $(VERSION) -M "debian package generated from the git repository" && echo "[!] BUILD_RELEASE=no, incrementing changelog";\ +	else\ +		echo "[!] BUILD_RELEASE";\  	fi  	mkdir -p build -	cp dist/$(APPNAME)-$(VERSION).tgz build/$(APPNAME)_$(shell dpkg-parsechangelog -SVersion | cut -d '-' -f 1-2).orig.tar.gz -	cd build && tar xzf $(APPNAME)_$(shell dpkg-parsechangelog -SVersion | cut -d '-' -f 1-2).orig.tar.gz +	cp dist/$(APPNAME)-$(VERSION).tgz build/$(APPNAME)_$(shell echo ${VERSION} | cut -d '-' -f 1-2).orig.tar.gz +	cd build && tar xzf $(APPNAME)_$(shell echo ${VERSION} | cut -d '-' -f 1-2).orig.tar.gz  	cp -r debian/ build/$(APPNAME)-$(VERSION)/  	cd build/$(APPNAME)-$(VERSION) && debuild -us -uc  	cp build/$(APPNAME)_$(shell dpkg-parsechangelog -SVersion)_*.deb dist/ | 
