PKGBUILDs/community/lockdev/PKGBUILD
2009-10-09 21:15:33 -05:00

24 lines
909 B
Bash

# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Andreas Wagner <a.wagner@stud.uni-frankfurt.de>
pkgname=lockdev
pkgver=1.0.3_1.2
pkgrel=1
pkgdesc="Run-time shared library for locking devices, using _both_ FSSTND and SVr4 methods"
url="http://packages.qa.debian.org/l/lockdev.html"
license=("GPL")
arch=('i686' 'x86_64')
source=("http://ftp.debian.org/debian/pool/main/l/$pkgname/${pkgname}_1.0.3.orig.tar.gz"
"http://ftp.debian.org/debian/pool/main/l/$pkgname/${pkgname}_${pkgver/_/-}.diff.gz")
md5sums=('64b9c1b87b125fc348e892e24625524a'
'afe2995ad3fc6551e107364d66a8e938')
build() {
cd $startdir/src/$pkgname-1.0.3
patch -p1 < ../${pkgname}_${pkgver/_/-}.diff || return 1
sed -i "s|CFLAGS = -g|CFLAGS = -g -fPIC|" Makefile
make shared || return 1
make static || return 1
make basedir=$startdir/pkg/usr install
}