2019-05-22 20:11:29 +03:00
i n c l u d e / u s r / s h a r e / d p k g / p k g - i n f o . m k
i n c l u d e / u s r / s h a r e / d p k g / a r c h i t e c t u r e . m k
2015-02-18 13:30:48 +03:00
PACKAGE = pve-ha-manager
2015-02-19 10:59:01 +03:00
SIMPACKAGE = pve-ha-simulator
2014-12-01 08:22:52 +03:00
2018-02-07 12:32:27 +03:00
GITVERSION := $( shell git rev-parse HEAD)
2019-07-11 20:23:51 +03:00
BUILDDIR ?= ${ PACKAGE } -${ DEB_VERSION_UPSTREAM }
2015-02-18 13:30:48 +03:00
2019-05-22 20:11:29 +03:00
DEB = ${ PACKAGE } _${ DEB_VERSION_UPSTREAM_REVISION } _${ DEB_BUILD_ARCH } .deb
2022-01-20 20:08:27 +03:00
DBG_DEB = ${ PACKAGE } -dbgsym_${ DEB_VERSION_UPSTREAM_REVISION } _${ DEB_BUILD_ARCH } .deb
2019-05-22 20:11:29 +03:00
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 13:30:48 +03:00
2017-10-13 12:26:00 +03:00
all : deb
2015-02-18 13:30:48 +03:00
2019-03-30 20:59:36 +03: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
2018-09-28 13:48:48 +03:00
.PHONY : dinstall
2017-02-06 17:32:34 +03:00
dinstall : $( DEB ) $( SIMDEB )
2015-02-19 10:59:01 +03:00
dpkg -i ${ DEB } ${ SIMDEB }
2015-02-18 13:30:48 +03:00
2017-02-06 17:32:34 +03:00
.PHONY : deb
2017-10-13 12:26:00 +03:00
deb : ${DEB } ${SIMDEB }
2022-01-20 20:08:27 +03:00
${DEB} ${DBG_DEB} : ${BUILDDIR }
2019-03-30 20:59:36 +03:00
cd ${ BUILDDIR } ; dpkg-buildpackage -b -us -uc
2015-02-18 13:30:48 +03:00
lintian ${ DEB }
2018-10-10 14:55:05 +03:00
lintian ${ SIMDEB }
2014-12-01 08:22:52 +03:00
2019-03-30 20:59:36 +03:00
.PHONY : dsc
dsc : ${DSC }
${DSC} : ${BUILDDIR }
2019-05-22 20:11:29 +03:00
cd ${ BUILDDIR } ; dpkg-buildpackage -S -us -uc -d
2019-03-30 20:59:36 +03:00
lintian ${ DSC }
2014-12-01 09:06:38 +03:00
.PHONY : clean
2015-03-09 12:47:19 +03:00
clean :
2015-03-12 14:20:18 +03:00
make -C src clean
2019-03-30 21:17:03 +03:00
rm -rf ${ BUILDDIR } *.tar.gz *.dsc *.deb ${ PACKAGE } -*.tar.gz *.changes *.buildinfo
2015-02-18 13:30:48 +03:00
find . -name '*~' -exec rm { } ';'
.PHONY : distclean
distclean : clean
2014-12-01 09:06:38 +03:00
2015-03-13 12:54:32 +03:00
.PHONY : upload
upload : ${DEB } ${SIMDEB }
2022-01-20 20:08:27 +03:00
tar cf - ${ DEB } ${ DBG_DEB } ${ SIMDEB } | ssh repoman@repo.proxmox.com -- upload --product pve --dist bullseye --arch ${ DEB_BUILD_ARCH }
2015-03-13 12:54:32 +03:00