]> git.proxmox.com Git - criu.git/blob - Makefile
buildsys: use repoman for uploads
[criu.git] / Makefile
1 RELEASE=5.0
2
3 PACKAGE=criu
4 PKGVER=2.10
5 DEBREL=1
6
7 SRCDIR=criu
8 SRCTAR=${SRCDIR}.tgz
9
10 ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
11 GITVERSION:=$(shell cat .git/refs/heads/master)
12
13 DEB1=${PACKAGE}_${PKGVER}-${DEBREL}_$(ARCH).deb
14 DEB_DBG=${PACKAGE}-dbg_${PKGVER}-${DEBREL}_$(ARCH).deb
15 DEBS=$(DEB1) $(DEB_DBG)
16
17 all: ${DEBS}
18 echo ${DEBS}
19
20 .PHONY: deb
21 deb $(DEB_DBG): $(DEB1)
22 $(DEB1): $(SRCTAR)
23 rm -rf ${SRCDIR}
24 tar xf ${SRCTAR}
25 cp -a debian ${SRCDIR}/debian
26 echo "git clone git://git.proxmox.com/git/criu.git\\ngit checkout ${GITVERSION}" > ${SRCDIR}/debian/SOURCE
27 cd ${SRCDIR}; dpkg-buildpackage -rfakeroot -b -us -uc
28 lintian ${DEBS}
29
30
31 .PHONY: download
32 download:
33 rm -rf ${SRCDIR} ${SRCTAR}
34 git clone -b v$(PKGVER) git://github.com/xemul/$(PACKAGE).git
35 tar czf ${SRCTAR}.tmp --exclude=.git ${SRCDIR}
36 mv ${SRCTAR}.tmp ${SRCTAR}
37
38 .PHONY: upload
39 upload: ${DEBS}
40 tar cf - ${DEBS} | ssh repoman@repo.proxmox.com -- upload --product pve --dist stretch --arch ${ARCH}
41
42 distclean: clean
43
44 .PHONY: clean
45 clean:
46 rm -rf ${SRCDIR} ${SRCDIR}.tmp *_${ARCH}.deb *.changes *.dsc
47 find . -name '*~' -exec rm {} ';'
48
49 .PHONY: dinstall
50 dinstall: ${DEBS}
51 dpkg -i ${DEBS}