![](https://secure.gravatar.com/avatar/df8330968b6df8cd1c1942c5fb4b720c.jpg?s=120&d=mm&r=g)
commit a8c17de7d3388d0ba8dc7fd027d77f0e0ba410a3 Author: Tim Biermann <tbier@posteo.de> Date: Sun Jun 14 21:52:46 2020 +0000 pam-gnupg: initial commit, version 0.1 diff --git a/pam-gnupg/.footprint b/pam-gnupg/.footprint new file mode 100644 index 000000000..28f2eb6cb --- /dev/null +++ b/pam-gnupg/.footprint @@ -0,0 +1,3 @@ +drwxr-xr-x root/root lib/ +drwxr-xr-x root/root lib/security/ +-rwxr-xr-x root/root lib/security/pam_gnupg.so diff --git a/pam-gnupg/.signature b/pam-gnupg/.signature new file mode 100644 index 000000000..33c15cd26 --- /dev/null +++ b/pam-gnupg/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3zwHDOlA3uLEgHN9QIKnKYFTQVvQeAEYMCCn9JqUIjzDaODMI9HS0ykfB/bRFIBcybIYwuMbeUMOEruLOLWeFwI= +SHA256 (Pkgfile) = e29f507978ffe3516a3dbdf36d21cd100fb1488d817ce84b779df733f17657cf +SHA256 (.footprint) = b7c73d4ebaf8a8b202af68370a2dd094f8200d8afe2660f68fb69f2d691e2ea2 +SHA256 (pam-gnupg-0.1.tar.gz) = b6e1a018185fb0ed467fa33e25998a9d666634da3828f8e4497e5d3739a59dc4 diff --git a/pam-gnupg/Pkgfile b/pam-gnupg/Pkgfile new file mode 100644 index 000000000..3bd244dad --- /dev/null +++ b/pam-gnupg/Pkgfile @@ -0,0 +1,17 @@ +# Description: Unlock GnuPG keys on login +# URL: https://github.com/cruegge/pam-gnupg +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: gnupg + +name=pam-gnupg +version=0.1 +release=1 +source=(https://github.com/cruegge/pam-gnupg/archive/v$version/$name-$version.tar.gz) + +build() { + cd $name-$version + ./autogen.sh + ./configure --prefix=/usr + make + make DESTDIR=$PKG install +}