]> git.proxmox.com Git - pve-omping.git/blob - Makefile
remove upstream packaging dir
[pve-omping.git] / Makefile
1 RELEASE=4.0
2
3 PKGVERSION=0.0.4
4 PKGRELEASE=2
5 PACKAGE=omping
6 PKGDIR=${PACKAGE}-${PKGVERSION}
7 PKGSRC=${PACKAGE}_${PKGVERSION}.orig.tar.gz
8
9 ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
10 GITVERSION:=$(shell cat .git/refs/heads/master)
11
12 DEBS= ${PACKAGE}_${PKGVERSION}-${PKGRELEASE}_${ARCH}.deb
13
14 all: ${DEBS}
15
16 ${DEBS}: ${PKGSRC}
17 rm -rf ${PKGDIR}
18 tar xf ${PKGSRC}
19 rm -rf ${PKGDIR}/debian
20 cp -a debian ${PKGDIR}/debian
21 echo "git clone git://git.proxmox.com/git/pve-omping.git\\ngit checkout ${GITVERSION}" > ${PKGDIR}/debian/SOURCE
22 cd ${PKGDIR}; dpkg-buildpackage -b -us -uc
23
24 .PHONY: upload
25 upload: ${DEBS}
26 tar -cf - ${DEBS} | ssh repoman@repo.proxmox.com upload
27
28 distclean: clean
29
30 .PHONY: clean
31 clean:
32 rm -rf *~ *_${ARCH}.deb *.changes *.dsc ${PKGDIR}
33
34 .PHONY: dinstall
35 dinstall: ${DEBS}
36 dpkg -i ${DEBS}