5
0
mirror of git://git.proxmox.com/git/pve-ha-manager.git synced 2025-03-11 20:58:16 +03:00

52 lines
1.3 KiB
Makefile
Raw Normal View History

include /usr/share/dpkg/pkg-info.mk
include /usr/share/dpkg/architecture.mk
2015-02-18 11:30:48 +01:00
PACKAGE=pve-ha-manager
2015-02-19 08:59:01 +01:00
SIMPACKAGE=pve-ha-simulator
2014-12-01 06:22:52 +01:00
GITVERSION:=$(shell git rev-parse HEAD)
BUILDDIR ?= ${PACKAGE}-${DEB_VERSION_UPSTREAM}
2015-02-18 11:30:48 +01:00
DEB=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_${DEB_BUILD_ARCH}.deb
DSC=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}.dsc
SIMDEB=${SIMPACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
SIMDSC=${SIMPACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}.dsc
2015-02-18 11:30:48 +01:00
2017-10-13 11:26:00 +02:00
all: deb
2015-02-18 11:30:48 +01:00
${BUILDDIR}:
rm -rf ${BUILDDIR}
rsync -a src/ debian ${BUILDDIR}
echo "git clone git://git.proxmox.com/git/pve-ha-manager.git\\ngit checkout ${GITVERSION}" > ${BUILDDIR}/debian/SOURCE
.PHONY: dinstall
2017-02-06 15:32:34 +01:00
dinstall: $(DEB) $(SIMDEB)
2015-02-19 08:59:01 +01:00
dpkg -i ${DEB} ${SIMDEB}
2015-02-18 11:30:48 +01:00
2017-02-06 15:32:34 +01:00
.PHONY: deb
2017-10-13 11:26:00 +02:00
deb: ${DEB} ${SIMDEB}
${DEB}: ${BUILDDIR}
cd ${BUILDDIR}; dpkg-buildpackage -b -us -uc
2015-02-18 11:30:48 +01:00
lintian ${DEB}
lintian ${SIMDEB}
2014-12-01 06:22:52 +01:00
.PHONY: dsc
dsc: ${DSC}
${DSC}: ${BUILDDIR}
cd ${BUILDDIR}; dpkg-buildpackage -S -us -uc -d
lintian ${DSC}
2014-12-01 07:06:38 +01:00
.PHONY: clean
clean:
2015-03-12 12:20:18 +01:00
make -C src clean
rm -rf ${BUILDDIR} *.tar.gz *.dsc *.deb ${PACKAGE}-*.tar.gz *.changes *.buildinfo
2015-02-18 11:30:48 +01:00
find . -name '*~' -exec rm {} ';'
.PHONY: distclean
distclean: clean
2014-12-01 07:06:38 +01:00
2015-03-13 10:54:32 +01:00
.PHONY: upload
upload: ${DEB} ${SIMDEB}
tar cf - ${DEB} ${SIMDEB}|ssh repoman@repo.proxmox.com -- upload --product pve --dist buster --arch ${ARCH}
2015-03-13 10:54:32 +01:00