blob: dbce95df847e94240b10531782c02de772d41805 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# This is an example APKBUILD file. Use this as a start to creating your own,
# and remove these comments.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Contributor: Your Name <youremail@domain.com>
pkgname=util-vserver
pkgver=0.30.215
pkgrel=0
pkgdesc="Linux-VServer admin utilities"
url="http://www.nongnu.org/util-vserver/"
license='GPL'
depends="uclibc"
makedepends="iptables-dev e2fsprogs beecrypt-dev autoconf automake g++"
source="http://ftp.linux-vserver.org/pub/utils/$pkgname/$pkgname-$pkgver.tar.bz2
$pkgname-$pkgver-touch-t.patch"
subpackages="$pkgname-doc $pkgname-dev"
build() {
local i
cd "$srcdir/$pkgname-$pkgver"
for i in ../*.patch; do
patch -p1 -i $i || return 1
done
./configure --prefix=/usr \
--mandir=/usr/share/man \
--sysconfdir=/etc \
--localstatedir=/var
make || return 1
make DESTDIR="$pkgdir/" install install-distribution
}
md5sums="befd9b8e5311e87395b67ee381d83649 util-vserver-0.30.215.tar.bz2
0c0a1b3e4c7a59a3ec66b8a6339abb50 util-vserver-0.30.215-touch-t.patch"
|