29 lines
931 B
Bash
29 lines
931 B
Bash
# Template file for 'autofs'
|
|
pkgname=autofs
|
|
version=5.1.2
|
|
revision=1
|
|
build_style=gnu-configure
|
|
conf_files="/etc/autofs/*"
|
|
configure_args="--with-libtirpc --with-mapdir=/etc/autofs --sbindir=/usr/bin"
|
|
hostmakedepends="flex kmod rpcgen"
|
|
makedepends="libtirpc-devel libxml2-devel"
|
|
short_desc="A kernel-based automounter for Linux"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-2"
|
|
homepage="${KERNEL_SITE}/daemons/autofs"
|
|
distfiles="${KERNEL_SITE}/daemons/autofs/v5/autofs-${version}.tar.xz"
|
|
checksum=88b7de39088aead983e02072a7b753d5ee52ce419c8913f7a3d4ff5521313f0c
|
|
|
|
CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/gssglue -I${XBPS_CROSS_BASE}/usr/include/tirpc"
|
|
|
|
pre_configure() {
|
|
sed -i 's,nfs/nfs.h,linux/nfs.h,g' */*.[ch]
|
|
sed -i 's,__S_IEXEC,S_IXUSR,g' */*.[ch]
|
|
}
|
|
post_install() {
|
|
vsv $pkgname
|
|
# Remove unused stuff
|
|
rm ${DESTDIR}/usr/share/man/man5/autofs.5
|
|
rm -r ${DESTDIR}/etc/default || :
|
|
rm ${DESTDIR}/autofs || :
|
|
}
|