diff options
author | Erich Eckner <git@eckner.net> | 2016-05-25 13:33:11 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2016-05-25 17:03:03 +0200 |
commit | 191cd11b074ecfc8fd3ad6756a525a15d84b8a0b (patch) | |
tree | 1811cdeab675b58fadf1e89d8642df303a9ee515 /python-simplepam | |
parent | 867aca622b911b8e42de968afaca8caef968dbde (diff) | |
download | archlinuxewe.git.save-191cd11b074ecfc8fd3ad6756a525a15d84b8a0b.tar.xz |
python-simplepam neu
Diffstat (limited to 'python-simplepam')
-rw-r--r-- | python-simplepam/PKGBUILD | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/python-simplepam/PKGBUILD b/python-simplepam/PKGBUILD new file mode 100644 index 00000000..c44eeb41 --- /dev/null +++ b/python-simplepam/PKGBUILD @@ -0,0 +1,18 @@ +# Maintainer: Erich Eckner <arch at eckner dot net> + +pkgname=python-simplepam +pkgver=0.1.5 +pkgrel=1 +pkgdesc="Pure Python interface to the Pluggable Authentication Modules system on Linux" +arch=('any') +url="https://github.com/leonnnn/python3-simplepam" +license=('MIT') +depends=('pam' 'python') +source=(https://github.com/leonnnn/python3-simplepam/archive/$pkgver.tar.gz) +sha512sums=('031fd8cb705d860fd1f370bd2a3cc788d1ec4a6a91cc25b548f0b11a5294dc2f57f246279e4503aaafc978f4e45df2d332bef5143c70bf4cf58d9445801b30df') + +package() { + cd "$srcdir/python3-simplepam-$pkgver" + python setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} + |