RELEASE=4.0 # sources from: https://git.fedorahosted.org/git/dlm.git DLMVER=4.0.2 PKGREL=1 DLMDIR=dlm-${DLMVER} DLMSRC=${DLMDIR}.tar.gz ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH) GITVERSION:=$(shell cat .git/refs/heads/master) DEB=dlm_${DLMVER}-${PKGREL}_${ARCH}.deb all: deb .PHONY: dinstall dinstall: deb dpkg -i ${DEB} .PHONY: deb deb ${DEB}: ${DLMSRC} rm -rf ${DLMDIR} tar xf ${DLMSRC} cp -a debian ${DLMDIR} cd ${DLMDIR}; dpkg-buildpackage -b -uc -us download: rm -f ${DLMSRC} wget https://git.fedorahosted.org/cgit/dlm.git/snapshot/${DLMSRC} distclean: clean .PHONY: clean clean: rm -rf *~ *_${ARCH}.deb *.changes *.dsc ${DLMDIR}