]> git.proxmox.com Git - lxc.git/blob - Makefile
aae7bbff5ee09901b18d41baaa972559ce53c9a7
[lxc.git] / Makefile
1 RELEASE=4.2
2
3 PACKAGE=lxc-pve
4 LXCVER=2.0.3
5 DEBREL=4
6
7 SRCDIR=lxc
8 SRCTAR=${SRCDIR}.tgz
9
10 ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
11 GITVERSION:=$(shell cat .git/refs/heads/master)
12
13 DEBS= \
14 ${PACKAGE}_${LXCVER}-${DEBREL}_amd64.deb \
15 ${PACKAGE}-dev_${LXCVER}-${DEBREL}_amd64.deb \
16 ${PACKAGE}-dbg_${LXCVER}-${DEBREL}_amd64.deb
17
18 all: ${DEBS}
19 echo ${DEBS}
20
21 deb ${DEBS}: ${SRCTAR}
22 rm -rf ${SRCDIR}
23 tar xf ${SRCTAR}
24 cp -a debian ${SRCDIR}/debian
25 echo "git clone git://git.proxmox.com/git/lxc.git\\ngit checkout ${GITVERSION}" > ${SRCDIR}/debian/SOURCE
26 cd ${SRCDIR}; dpkg-buildpackage -rfakeroot -b -us -uc
27 lintian ${DEBS}
28
29
30 .PHONY: download
31 download ${SRCTAR}:
32 rm -rf ${SRCDIR} ${SRCTAR}
33 git clone -b stable-2.0 git://github.com/lxc/lxc
34 tar czf ${SRCTAR}.tmp ${SRCDIR}
35 mv ${SRCTAR}.tmp ${SRCTAR}
36
37 .PHONY: upload
38 upload: ${DEBS}
39 umount /pve/${RELEASE}; mount /pve/${RELEASE} -o rw
40 mkdir -p /pve/${RELEASE}/extra
41 rm -f /pve/${RELEASE}/extra/${PACKAGE}_*.deb
42 rm -f /pve/${RELEASE}/extra/${PACKAGE}-dev_*.deb
43 rm -f /pve/${RELEASE}/extra/${PACKAGE}-dbg_*.deb
44 rm -f /pve/${RELEASE}/extra/Packages*
45 cp ${DEBS} /pve/${RELEASE}/extra
46 cd /pve/${RELEASE}/extra; dpkg-scanpackages . /dev/null > Packages; gzip -9c Packages > Packages.gz
47 umount /pve/${RELEASE}; mount /pve/${RELEASE} -o ro
48
49 distclean: clean
50
51 .PHONY: clean
52 clean:
53 rm -rf ${SRCDIR} ${SRCDIR}.tmp *_${ARCH}.deb *.changes *.dsc
54 find . -name '*~' -exec rm {} ';'
55
56 .PHONY: dinstall
57 dinstall: ${DEBS}
58 dpkg -i ${DEBS}