blob: 7aac68810f312cfca64e44e7bda28da9e26895a8 (
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
38
39
40
41
42
43
44
45
46
47
48
|
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
# Maintainer:
pkgname=libnfs
pkgver=1.5.0
pkgrel=0
pkgdesc="client library for accessing NFS shares"
url="https://github.com/sahlberg/libnfs"
arch="all"
license="GPL"
depends=""
depends_dev=""
makedepends="$depends_dev autoconf automake m4 libtool"
install=""
subpackages="$pkgname-dev"
source="http://github.com/downloads/sahlberg/libnfs/libnfs-$pkgver.tar.gz
remove-rpcgen.patch"
_builddir="$srcdir"/libnfs-$pkgver
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
./bootstrap || return 1
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
rm -f "$pkgdir"/usr/lib/*.la
}
md5sums="58d88d7a7cfb9455a3fb044d158cef55 libnfs-1.5.0.tar.gz
6d4c2989fc576577ffe262cb3cb27435 remove-rpcgen.patch"
|