# $Id: PKGBUILD 92244 2013-06-03 11:15:10Z allan $ # Maintainer: Lukas Fleischer # Contributor: Andrea Scarpino # Contributor: Dale Blount # Contributor: Manolis Tzanidakis pkgname=autofs pkgver=5.0.7 pkgrel=3 pkgdesc='A kernel-based automounter for Linux.' arch=('i686' 'x86_64') url='http://freshmeat.net/projects/autofs' license=('GPL2') depends=('libxml2') makedepends=('libldap' 'krb5' 'kmod') optdepends=('krb5: for LDAP support') backup=('etc/default/autofs' 'etc/autofs/auto.master' 'etc/autofs/auto.misc') options=(!makeflags) install='autofs.install' source=("http://www.kernel.org/pub/linux/daemons/${pkgname}/v5/${pkgname}-${pkgver}.tar.bz2" 'auto.master' 'auto.misc') md5sums=('bc46838dece83c02d800ff144ed9f431' 'a6cefb591e77b31b79dbb7243646c96b' 'd8a15ec9186c5c0b36e5cea1e2739e8a') build() { cd "${srcdir}/${pkgname}-${pkgver}" sed -i "s:SUBDIRS = lib daemon modules man samples:SUBDIRS = lib daemon modules man:" \ Makefile.rules ./configure --prefix=/usr --sysconfdir=/etc/autofs --sbindir=/usr/bin \ --with-mapdir=/etc/autofs --without-hesiod \ --enable-ignore-busy --with-systemd make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make INSTALLROOT="${pkgdir}" install install -Dm0644 "${srcdir}/auto.master" "${pkgdir}/etc/autofs/auto.master" install -Dm0644 "${srcdir}/auto.misc" "${pkgdir}/etc/autofs/auto.misc" install -Dm0644 "samples/autofs.service" "${pkgdir}/usr/lib/systemd/system/autofs.service" } # vim:set ts=2 sw=2 et: