X-Git-Url: https://git.proxmox.com/?p=pve-common.git;a=blobdiff_plain;f=Makefile;h=d9d152e5773e75f3fea25c748292d6d136db2210;hp=6d1a8933faddd3e3b5498088f4cc46dddda5d988;hb=51d41234234ef7c7d40501f59c7dbfcf103e9843;hpb=2862235726cd0252e092460cf50e6e56906be31f diff --git a/Makefile b/Makefile index 6d1a893..d9d152e 100644 --- a/Makefile +++ b/Makefile @@ -1,19 +1,12 @@ -RELEASE=4.3 - -VERSION=4.0 -PKGREL=77 +VERSION=5.0 +PKGREL=40 PACKAGE=libpve-common-perl -PREFIX=/usr -BINDIR=${PREFIX}/bin -MANDIR=${PREFIX}/share/man -DOCDIR=${PREFIX}/share/doc -MAN1DIR=${MANDIR}/man1/ -PERLDIR=${PREFIX}/share/perl5 - ARCH=all -GITVERSION:=$(shell cat .git/refs/heads/master) +GITVERSION:=$(shell git rev-parse HEAD) + +BUILDDIR ?= build DEB=${PACKAGE}_${VERSION}-${PKGREL}_${ARCH}.deb @@ -25,21 +18,18 @@ dinstall: deb .PHONY: deb -deb ${DEB}: - $(MAKE) -C test check - rm -rf build - rsync -a src/ build - rsync -a debian/ build/debian - echo "git clone git://git.proxmox.com/git/pve-common.git\\ngit checkout ${GITVERSION}" > build/debian/SOURCE - cd build; dpkg-buildpackage -rfakeroot -b -us -uc +deb ${DEB}: check + rm -rf ${BUILDDIR} + rsync -a src/ ${BUILDDIR} + rsync -a debian/ ${BUILDDIR}/debian + echo "git clone git://git.proxmox.com/git/pve-common.git\\ngit checkout ${GITVERSION}" > ${BUILDDIR}/debian/SOURCE + cd ${BUILDDIR}; dpkg-buildpackage -b -us -uc lintian ${DEB} -.PHONY: clean -clean: - rm -rf *~ *.deb *.changes build ${PACKAGE}-*.tar.gz - -.PHONY: distclean +.PHONY: clean distclean distclean: clean +clean: + rm -rf *~ *.deb *.changes ${BUILDDIR} *.buildinfo .PHONY: check check: @@ -47,5 +37,5 @@ check: .PHONY: upload upload: ${DEB} - tar cf - ${DEB}|ssh repoman@repo.proxmox.com upload + tar cf - ${DEB}|ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg --dist stretch