PACKAGE=lxcfs PKGVER=2.0.7 DEBREL=pve3 SRCDIR=${PACKAGE} SRCTAR=${SRCDIR}.tgz ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH) GITVERSION:=$(shell cat .git/refs/heads/master) DEB1=${PACKAGE}_${PKGVER}-${DEBREL}_${ARCH}.deb DEB2=${PACKAGE}-dbg_${PKGVER}-${DEBREL}_${ARCH}.deb DEBS=$(DEB1) $(DEB2) all: ${DEB} .PHONY: deb deb: $(DEBS) $(DEB2): $(DEB1) $(DEB1): $(SRCTAR) rm -rf ${SRCDIR} tar xf ${SRCTAR} cp -a debian ${SRCDIR}/debian echo "git clone git://git.proxmox.com/git/lxcfs.git\\ngit checkout ${GITVERSION}" > ${SRCDIR}/debian/SOURCE echo "debian/SOURCE" >> ${SRCDIR}/debian/docs cd ${SRCDIR}; dpkg-buildpackage -rfakeroot -b -us -uc #lintian $(DEB) .PHONY: download download ${SRCTAR}: rm -rf ${SRCDIR} ${SRCTAR} git clone --depth=1 -b lxcfs-${PKGVER} git://github.com/lxc/lxcfs tar czf ${SRCTAR}.tmp ${SRCDIR} mv ${SRCTAR}.tmp ${SRCTAR} .PHONY: upload upload: $(DEBS) tar cf - ${DEBS} | ssh repoman@repo.proxmox.com upload --product pve --dist stretch distclean: clean .PHONY: clean clean: rm -rf ${SRCDIR} ${SRCDIR}.tmp *_${ARCH}.deb *.changes *.dsc *.buildinfo find . -name '*~' -exec rm {} ';' .PHONY: dinstall dinstall: $(DEBS) dpkg -i $(DEBS)