]> git.proxmox.com Git - vzquota.git/blame - Makefile
Initial commit
[vzquota.git] / Makefile
CommitLineData
5cd8abee
DM
1RELEASE=2.2
2
3# wget http://download.openvz.org/utils/vzquota/3.1/src/vzquota-3.1.tar.bz2
4
5PACKAGE=vzquota
6PKGVER=3.1
7PACKAGERELEASE=1
8
9ARCH=amd64
10DEB=${PACKAGE}_${PKGVER}-${PACKAGERELEASE}_${ARCH}.deb
11
12SRCDIR=vzquota-${PKGVER}
13SRC=${SRCDIR}.tar.bz2
14
15all: ${DEB}
16
17${DEB}: ${SRC}
18 rm -rf ${SRCDIR}
19 tar xf ${SRC}
20 cp -a debian ${SRCDIR}
21 cd ${SRCDIR}; dpkg-buildpackage -b -rfakeroot -us -uc
22 lintian ${DEB}
23
24
25clean:
26 rm -rf *~ debian/*~ ${SRCDIR} ${PACKAGE}_*.deb ${PACKAGE}_*.changes