]> git.proxmox.com Git - criu.git/blob - Makefile
fba83b4841b4137914ab83a2e34a941fef1a376b
[criu.git] / Makefile
1 RELEASE=5.0
2
3 PACKAGE=criu
4 PKGVER=3.11
5 DEBREL=2~bpo90
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}-dbgsym_${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 mv ${SRCDIR}/debian/changelog ${SRCDIR}/debian/changelog.org
26 cat changelog.Debian ${SRCDIR}/debian/changelog.org > ${SRCDIR}/debian/changelog
27 echo "git clone git://git.proxmox.com/git/criu.git\\ngit checkout ${GITVERSION}" > ${SRCDIR}/debian/SOURCE
28 cd ${SRCDIR}; dpkg-buildpackage -b -us -uc
29 lintian ${DEBS}
30
31
32 .PHONY: download
33 download:
34 rm -rf ${SRCDIR} ${SRCTAR}
35 git clone -b debian/3.11-2 https://anonscm.debian.org/git/collab-maint/criu.git ${SRCDIR}
36 tar czf ${SRCTAR}.tmp --exclude=.git ${SRCDIR}
37 mv ${SRCTAR}.tmp ${SRCTAR}
38
39 .PHONY: upload
40 upload: ${DEBS}
41 tar cf - ${DEBS} | ssh repoman@repo.proxmox.com -- upload --product pve --dist stretch --arch ${ARCH}
42
43 distclean: clean
44
45 .PHONY: clean
46 clean:
47 rm -rf ${SRCDIR} ${SRCDIR}.tmp *_${ARCH}.deb *.changes *.dsc *.buildinfo
48 find . -name '*~' -exec rm {} ';'
49
50 .PHONY: dinstall
51 dinstall: ${DEBS}
52 dpkg -i ${DEBS}