# GITVERSION=$(shell git rev-parse FETCH_HEAD) GUIVERSION=$(shell cd ../../gui && git describe --tags $(git rev-list --tags --max-count=1) | sed 's/^v//') TOOLKITVERSION=$(shell git describe --tags $(git rev-list --tags --max-count=1) | sed 's/^v//') VERSION=${TOOLKITVERSION}-gui-${GUIVERSION} BASENAME=go-wit-gui all: help deb help: @echo @echo "make deb # attempt to build the .deb package using dpkg" @echo "make rpm # attempt to build a .rpm package" @echo deb: clean extract DEBIAN build clean: rm -rf ../files rm -f ../*.deb rm -f ../*.tar.xz data.tar.xz rm -rf DEBIAN extract: mkdir -p ../files/usr/lib/go-gui/${GUIVERSION}/${TOOLKITVERSION} cp ../*.so ../files/usr/lib/go-gui/${GUIVERSION}/${TOOLKITVERSION}/ cp ../README.md ../files/usr/lib/go-gui/${GUIVERSION}/${TOOLKITVERSION}/ # makes the DEBIAN/ directory DEBIAN: mkdir -p DEBIAN # make the md5sum file cd ../files/ && find -type f -exec md5sum '{}' \; |sort -k2 >../md5sums mv ../md5sums DEBIAN/ # make the control there mkdir -p DEBIAN cp control DEBIAN/ echo Version: ${VERSION} >>DEBIAN/control echo ToolkitVersion: ${TOOLKITVERSION} >>DEBIAN/control echo GuiVersion: ${GUIVERSION} >>DEBIAN/control cp postinst DEBIAN build: mv DEBIAN ../files/ cd .. && dpkg-deb --build files ${BASENAME}_${VERSION}_amd64.deb @echo @echo '#######################' cd .. && dpkg-deb --info ${BASENAME}_${VERSION}_amd64.deb @echo '#######################' @echo