42 lines
1.1 KiB
Text
42 lines
1.1 KiB
Text
# Template file for 'lockdev'
|
|
pkgname=lockdev
|
|
version=1.0.3
|
|
revision=2
|
|
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 CC=$CC shared CFLAGS="${CFLAGS} -D_PATH_LOCK=\\\"/run/lock/lockdev\\\" -fPIC"
|
|
make CC=$CC 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
|
|
}
|
|
|
|
lockdev-devel_package() {
|
|
depends="lockdev>=$version"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
vmove usr/share
|
|
}
|
|
}
|
|
|
|
lockdev_package() {
|
|
pkg_install() {
|
|
vmove usr
|
|
}
|
|
}
|