44 lines
1.2 KiB
Bash
44 lines
1.2 KiB
Bash
# Template file for 'keyutils'
|
|
pkgname=keyutils
|
|
version=1.5.9
|
|
revision=4
|
|
conf_files="/etc/request-key.conf"
|
|
short_desc="Linux Key Management Utilities"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://www.kernel.org"
|
|
license="GPL-2, LGPL-2.1"
|
|
distfiles="http://people.redhat.com/~dhowells/$pkgname/$pkgname-$version.tar.bz2"
|
|
checksum=4da2c5552c688b65ab14d4fd40fbdf720c8b396d8ece643e040cf6e707e083ae
|
|
|
|
pre_build() {
|
|
# Fix musl build - doesn't hurt glibc either
|
|
sed -e "/#include <stdlib.h>/a #include <limits.h>" \
|
|
-i key.dns_resolver.c
|
|
}
|
|
do_build() {
|
|
make CFLAGS="${CFLAGS} -fPIC" LDFLAGS="${LDFLAGS}" SBINDIR='/usr/bin' \
|
|
LIBDIR='/usr/lib' USRLIBDIR='/usr/lib' \
|
|
BINDIR='/usr/bin' ${makejobs}
|
|
}
|
|
do_install() {
|
|
make DESTDIR=${DESTDIR} CFLAGS="${CFLAGS} -fPIC" LDFLAGS="${LDFLAGS}" \
|
|
LIBDIR='/usr/lib' USRLIBDIR='/usr/lib' SBINDIR='/usr/bin' \
|
|
BINDIR='/usr/bin' install
|
|
}
|
|
|
|
libkeyutils_package() {
|
|
short_desc+=" - runtime library"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|
|
keyutils-devel_package() {
|
|
depends="libkeyutils>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/share/man/man3
|
|
}
|
|
}
|