Skip to content
Snippets Groups Projects
Unverified Commit 3d1b3085 authored by Kali Kaneko's avatar Kali Kaneko
Browse files

[ci] fix version handling in the Makefile

parent a26e082a
No related branches found
No related tags found
No related merge requests found
......@@ -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/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment