# Maintainer: Erich Eckner # Contributor: Runnytu < runnytu at gmail dot com > # Old Maintainer: Sven-Hendrik Haase # Old Maintainer: Jonas Heinrich # Contributor: tobias # Contributor: Tobias Kieslich # Contributor: Neil Romig pkgname=courier-authlib pkgver=0.71.1 pkgrel=3 pkgdesc="Authentication library for the Courier mailserver(s)" arch=(i686 pentium4 x86_64) license=('GPL2') url="https://courier-mta.org/authlib/" backup=('etc/authlib/authdaemonrc' 'etc/authlib/authldaprc' \ 'etc/authlib/authmysqlrc' 'etc/authlib/authpgsqlrc') _pinned_dependencies=( 'gcc-libs=10.2.0' 'glibc>=2.31' 'libcrypt.so=2' 'libgdbm.so=6' 'libmariadb.so=3' 'libpam.so=0' 'libpq.so=5' 'libtool=2.4.6+42+gb88cebd5' 'sqlite=3.35.0' ) depends=('openssl' 'perl' 'expect' 'courier-unicode>=2.1' "${_pinned_dependencies[@]}") makedepends=('libldap') optdepends=('sqlite: With support for the authsqlite authentication module' 'libmariadbclient: With support for the authmysql authentication module' 'libldap: With support for the authldap authentication module' 'postgresql-libs: With support for the authpgsql authentication module' 'pam: With support for the authpam authentication module') options=(!libtool !staticlibs emptydirs) install=${pkgname}.install source=(https://downloads.sourceforge.net/project/courier/authlib/${pkgver}/${pkgname}-${pkgver}.tar.bz2 authdaemond.service courier-sysusers.conf) sha512sums=('a1b36f4f3b0f11fb34e5dab197b3a0471bc6a99528fe77836b3b2d12f9dac292be4c181aeba5afa3410685dd6882ed00ff6692e74cd0132ba591de1294d0f2d7' '7855fadbef9e6845868d720f9637cc6fe97814b9d994641a351e48536e1985323f095c708f30abe0f3a0c1cb8e25a746da1bb5b2baf9f63d0498d01df39f843b' 'c8c7dfd245ca7c6bf9174bb170bb45ff548eaa4c0b4049e3def12cf15f83d98347a0d3e0174dd7aae86c412117eee98f51428e8d3c8df61ccdcb5e929ab939a3') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr \ --sbindir=/usr/bin \ --sysconfdir=/etc \ --localstatedir=/var \ --libdir=/usr/lib \ --libexecdir=/usr/lib \ --with-db=gdbm \ --with-mailuser=courier \ --with-mailgroup=courier \ --with-authpam \ --with-authpwd \ --with-authshadow \ --with-authldap \ --with-authmysql \ --with-authpgsql \ --with-authuserdb \ --with-authcram \ --with-authdaemon \ --with-authdaemonvar=/run/authdaemon #--with-authsqlite --with-sqlite-libs make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install for _distfile in "${pkgdir}/etc/authlib/"*.dist; do # change ownership - this is usually done by the Makefile where it is assumed the user & group already exist chown 72:72 "${_distfile}" # remove the .dist suffix - mimics the install-configure step of a standard Courier installation mv "${_distfile}" "${pkgdir}/etc/authlib/"`basename "${_distfile}" .dist` done # copy the .schema; mostly refered to as courier.schema -> rename it install -Dm 444 authldap.schema "${pkgdir}/etc/openldap/schema/courier.schema" chown 72:72 "${pkgdir}/usr/lib/courier-authlib" # Install systemd sysuser file install -Dm 644 "$srcdir/courier-sysusers.conf" "${pkgdir}/usr/lib/sysusers.d/courier.conf" # Install service file install -Dm 644 "${srcdir}/authdaemond.service" "${pkgdir}/usr/lib/systemd/system/authdaemond.service" mkdir -p "$pkgdir/var/spool/courier" echo '/usr/lib/courier-authlib' \ | install -Dm 644 '/dev/stdin' "${pkgdir}/etc/ld.so.conf.d/courier-authlib.conf" rmdir "${pkgdir}/run/authdaemon" }