summaryrefslogtreecommitdiff
path: root/community/lockdev
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/lockdev
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/lockdev')
-rw-r--r--community/lockdev/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/community/lockdev/PKGBUILD b/community/lockdev/PKGBUILD
new file mode 100644
index 000000000..1074e3f75
--- /dev/null
+++ b/community/lockdev/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 21613 2010-07-16 20:02:19Z tdziedzic $
+# 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=2
+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 ${pkgname}-1.0.3
+
+ patch -p1 < ../${pkgname}_${pkgver/_/-}.diff
+
+ sed -i "s|CFLAGS = -g|CFLAGS = -g -fPIC|" Makefile
+
+ make shared
+
+ make static
+}
+
+package() {
+ cd ${pkgname}-1.0.3
+
+ make basedir=${pkgdir}/usr install
+}