23 lines
643 B
Bash
23 lines
643 B
Bash
# Template file for 'pam_netauth'
|
|
pkgname=pam_netauth
|
|
version=0.3.5
|
|
revision=3
|
|
build_style=go
|
|
go_import_path="github.com/netauth/pam_netauth"
|
|
makedepends=pam-devel
|
|
short_desc="PAM plugin for NetAuth"
|
|
maintainer="Michael Aldridge <maldridge@netauth.org>"
|
|
license="MIT"
|
|
homepage="https://netauth.org"
|
|
distfiles="https://github.com/NetAuth/pam_netauth/archive/v$version.tar.gz"
|
|
checksum=50e206ee9b542831e1f62e40817e6238d218c5dc95f6e854a9f4267c1e7a3341
|
|
|
|
do_build() {
|
|
go build -x -o pam_netauth.so -buildmode=c-shared -ldflags "${go_ldflags}" ${go_import_path}
|
|
}
|
|
|
|
do_install() {
|
|
vinstall pam_netauth.so 0755 usr/lib/security/
|
|
vlicense LICENSE
|
|
}
|