]> git.proxmox.com Git - lxcfs.git/blobdiff - Makefile
fix package-must-activate-ldconfig-trigger lintian error
[lxcfs.git] / Makefile
index 24054d345ae58c780906e7f7f3da4b89384e4877..f584f74692740b60fa1597fae1a24a1c6c807187 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,49 +1,46 @@
+include /usr/share/dpkg/pkg-info.mk
+include /usr/share/dpkg/architecture.mk
+
 PACKAGE=lxcfs
-PKGVER=2.0.7
-DEBREL=1
 
 SRCDIR=${PACKAGE}
-SRCTAR=${SRCDIR}.tgz
+BUILDDIR ?= ${PACKAGE}-${DEB_VERSION_UPSTREAM}
 
-ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
-GITVERSION:=$(shell cat .git/refs/heads/master)
+GITVERSION:=$(shell git rev-parse HEAD)
 
-DEB1=${PACKAGE}_${PKGVER}-${DEBREL}_${ARCH}.deb
-DEB2=${PACKAGE}-dbg_${PKGVER}-${DEBREL}_${ARCH}.deb
-DEBS=$(DEB1) $(DEB2)
+DEB=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_${DEB_BUILD_ARCH}.deb
+DBGDEB=${PACKAGE}-dbgsym_${DEB_VERSION_UPSTREAM_REVISION}_${DEB_BUILD_ARCH}.deb
+DEBS=$(DEB) $(DBGDEB)
 
 all: ${DEB}
 
+.PHONY: submodule
+submodule:
+       test -f "${SRCDIR}/README" || git submodule update --init
+${SRCDIR}/README: submodule
+
+$(BUILDDIR): $(SRCDIR)/README debian
+       rm -rf $(BUILDDIR)
+       rsync -a $(SRCDIR)/ debian $(BUILDDIR)
+       echo "git clone git://git.proxmox.com/git/lxcfs.git\\ngit checkout $(GITVERSION)" > $(BUILDDIR)/debian/SOURCE
+
 .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}
+$(DBGDEB): $(DEB)
+$(DEB): $(BUILDDIR)
+       cd $(BUILDDIR); dpkg-buildpackage -rfakeroot -b -us -uc
+       lintian $(DEBS)
 
 .PHONY: upload
 upload: $(DEBS)
        tar cf - ${DEBS} | ssh repoman@repo.proxmox.com upload --product pve --dist stretch
 
-distclean: clean
-
-.PHONY: clean
+.PHONY: clean distclean
 clean:
-       rm -rf ${SRCDIR} ${SRCDIR}.tmp *_${ARCH}.deb *.changes *.dsc  *.buildinfo
-       find . -name '*~' -exec rm {} ';'
+       rm -rf $(PACKAGE)-*/ *.deb *.changes *.dsc  *.buildinfo
+
+distclean: clean
+       git submodule deinit --all
 
 .PHONY: dinstall
 dinstall: $(DEBS)