32 lines
791 B
Bash
32 lines
791 B
Bash
# A PAM module allowing authentication via an /etc/passwd-like file
|
|
# Contributor: Mark Dovermann <mdovermann@ceruleanmicrosystems.com>
|
|
# Contributor: David Rosenstrauch <darose@darose.net>
|
|
# Maintainer: Fabian <fabian@ldsoft.dev>
|
|
|
|
pkgname=libpam_pwdfile-fabs
|
|
pkgver=1.0
|
|
pkgrel=2
|
|
pkgdesc="A PAM module allowing authentication via an /etc/passwd-like file"
|
|
arch=('x86_64')
|
|
url="https://git.ldsoft.dev/fabs/libpam-pwdfile"
|
|
license=('GPL')
|
|
groups=()
|
|
depends=('pam')
|
|
provides=('libpam_pwdfile')
|
|
conflicts=('libpam_pwdfile')
|
|
source=("libpam-pwdfile"::"git+https://git.ldsoft.dev/fabs/libpam-pwdfile")
|
|
sha1sums=('SKIP')
|
|
|
|
build() {
|
|
cd "$srcdir/libpam-pwdfile"
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/libpam-pwdfile"
|
|
|
|
make PAM_LIB_DIR="$pkgdir/usr/lib/security" INSTALL=$(which install) install
|
|
}
|
|
|