diff --git a/PKGBUILD b/PKGBUILD index 05a8883..d6cbf47 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,28 +1,30 @@ # A PAM module allowing authentication via an /etc/passwd-like file # Contributor: Mark Dovermann # Contributor: David Rosenstrauch -# Maintainer: Darko Luketic +# Maintainer: Fabian -pkgname=libpam_pwdfile +pkgname=libpam_pwdfile-fabs pkgver=1.0 -pkgrel=2 +pkgrel=1 pkgdesc="A PAM module allowing authentication via an /etc/passwd-like file" -arch=('i686' 'x86_64') -url="https://github.com/tiwe-de/libpam-pwdfile" +arch=('x86_64') +url="https://git.ldsoft.dev/fabs/libpam-pwdfile" license=('GPL') groups=() depends=('pam') -source=(https://github.com/tiwe-de/libpam-pwdfile/archive/v${pkgver}.tar.gz) -sha1sums=('a5fd2bd79a3c781b508905709450427f1b28705f') +provides=('libpam_pwdfile') +conflicts=('libpam_pwdfile') +source=("libpam-pwdfile"::"git+https://git.ldsoft.dev/fabs/libpam-pwdfile") +sha1sums=('SKIP') build() { - cd "$srcdir/libpam-pwdfile-${pkgver}" + cd "$srcdir/libpam-pwdfile" make } package() { - cd "$srcdir/libpam-pwdfile-${pkgver}" + cd "$srcdir/libpam-pwdfile" make PAM_LIB_DIR="$pkgdir/usr/lib/security" INSTALL=$(which install) install }