blob: 8d7c70484d349e0eae957817eea3d6eae4c824e4 (
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
|
# Contributor: Andreas Wagner <Andreas dot Wagner at em dot uni-frankfurt dot de>
pkgname=liblockfile
pkgver=1.08_4
pkgrel=1
pkgdesc="a library with NFS-safe locking functions"
arch=('i686' 'x86_64' 'mips64el')
license=('GPL')
url="http://packages.debian.org/unstable/libs/liblockfile1"
depends=('glibc')
makedepends=()
source=(http://ftp.debian.org/debian/pool/main/libl/$pkgname/${pkgname}_1.08.orig.tar.gz
http://ftp.debian.org/debian/pool/main/libl/$pkgname/${pkgname}_${pkgver/_/-}.debian.tar.bz2)
build() {
cd $startdir/src/$pkgname-1.08
for p in `cat ../debian/patches/series` ; do
patch -p1 < ../debian/patches/$p
done
./configure --prefix=/usr --mandir=/usr/share/man --enable-shared --disable-static
sed -i "/ldconfig/d" Makefile
make
mkdir -p $pkgdir/usr/{lib,bin,include,share/man/man1,share/man/man3}
make install prefix=$pkgdir/usr mandir=$pkgdir/usr/share/man
}
md5sums=('c24e2dfb4a2aab0263fe5ac1564d305e'
'50c0c049d2838704f5720f5fd9eaddac')
|