New package: lockdev-1.0.3.

This commit is contained in:
Juan RP 2013-03-25 15:07:53 +01:00
parent 2c5be953fb
commit b191b6e9ab
4 changed files with 39 additions and 0 deletions

View File

@ -1202,3 +1202,4 @@ libbcm_host.so rpi-firmware-20130228_1
libopenmaxil.so rpi-firmware-20130228_1
libvchiq_arm.so rpi-firmware-20130228_1
libvcos.so rpi-firmware-20130228_1
liblockdev.so.1 lockdev-1.0.3_1

1
srcpkgs/lockdev-devel Symbolic link
View File

@ -0,0 +1 @@
lockdev

View File

@ -0,0 +1,10 @@
# Template file for 'lockdev-devel'.
#
depends="lockdev>=$version"
short_desc="${short_desc} -- development files"
do_install() {
vmove usr/include usr
vmove "usr/lib/*.a" usr/lib
vmove usr/share usr
}

27
srcpkgs/lockdev/template Normal file
View File

@ -0,0 +1,27 @@
# Template file for 'lockdev'
pkgname=lockdev
version=1.0.3
revision=1
subpackages="${pkgname}-devel"
short_desc="Run-time shared library for locking devices"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://packages.qa.debian.org/l/lockdev.html"
license="LGPL-2.1"
distfiles="${DEBIAN_SITE}/main/l/${pkgname}/${pkgname}_${version}.orig.tar.gz"
checksum=ccae635d7ac3fdd50897eceb250872b3d9a191d298f213e7f0c836910d869f82
long_desc="
It provides a reliable way to put an exclusive lock to devices using
_both_ FSSTND and SVr4 methods."
do_build() {
make shared CFLAGS="${CFLAGS} -D_PATH_LOCK=\\\"/run/lock/lockdev\\\" -fPIC"
make static CFLAGS="${CFLAGS} -D_PATH_LOCK=\\\"/run/lock/lockdev\\\" -fPIC"
}
do_install() {
make basedir=${DESTDIR}/usr install
for f in so so.1; do
ln -sr ${DESTDIR}/usr/lib/liblockdev.${version}.so \
${DESTDIR}/usr/lib/liblockdev.${f}
done
}