5
0
mirror of git://git.proxmox.com/git/pve-guest-common.git synced 2024-12-22 13:34:00 +03:00
pve-guest-common/Makefile

42 lines
919 B
Makefile
Raw Normal View History

include /usr/share/dpkg/pkg-info.mk
2017-01-25 11:13:35 +03:00
PACKAGE=libpve-guest-common-perl
DEB=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
DSC=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}.dsc
BUILDDIR ?= ${PACKAGE}-${DEB_VERSION_UPSTREAM}
2017-01-25 11:13:35 +03:00
all:
${BUILDDIR}:
rm -rf ${BUILDDIR}
cp -a src ${BUILDDIR}
cp -a debian ${BUILDDIR}/
echo "git clone git://git.proxmox.com/git/pve-guest-common.git\\ngit checkout ${GITVERSION}" > ${BUILDDIR}/debian/SOURCE
2017-01-25 11:13:35 +03:00
.PHONY: deb
2017-02-03 16:44:51 +03:00
deb: ${DEB}
${DEB}: ${BUILDDIR}
cd ${BUILDDIR}; dpkg-buildpackage -b -us -uc
2017-01-25 11:13:35 +03:00
lintian ${DEB}
.PHONY: dsc
dsc: ${DSC}
${DSC}: ${BUILDDIR}
cd ${BUILDDIR}; dpkg-buildpackage -S -us -uc -d -nc
lintian ${DSC}
2017-01-25 11:13:35 +03:00
.PHONY: upload
upload: ${DEB}
tar cf - ${DEB} | ssh repoman@repo.proxmox.com -- upload --product pve --dist bullseye
2017-01-25 11:13:35 +03:00
distclean: clean
clean:
rm -rf ${BUILDDIR} *.deb *.dsc *.changes *.buildinfo *.tar.gz
2017-01-25 11:13:35 +03:00
.PHONY: dinstall
dinstall: ${DEB}
dpkg -i ${DEB}