Add 'python-pamela/' from commit '5ed03b68ad700dc4db7dbcf48f07f2cf1cee64b0'

git-subtree-dir: python-pamela
git-subtree-mainline: 023d679d67
git-subtree-split: 5ed03b68ad
This commit is contained in:
Anthony Wang 2023-11-11 19:09:46 -05:00
commit 27332d632a
2 changed files with 31 additions and 0 deletions

14
python-pamela/.SRCINFO Normal file
View file

@ -0,0 +1,14 @@
pkgbase = python-pamela
pkgdesc = Python PAM interface
pkgver = 1.1.0
pkgrel = 1
url = https://github.com/minrk/pamela
arch = any
license = MIT
makedepends = python-setuptools
depends = pam
depends = python
source = https://github.com/minrk/pamela/archive/1.1.0.tar.gz
md5sums = 8204bfa354129dcd9301de0f75d5e219
pkgname = python-pamela

17
python-pamela/PKGBUILD Normal file
View file

@ -0,0 +1,17 @@
pkgname=python-pamela
pkgver=1.1.0
pkgrel=1
pkgdesc="Python PAM interface"
arch=('any')
url="https://github.com/minrk/pamela"
license=('MIT')
depends=('pam' 'python')
makedepends=('python-setuptools')
source=("https://github.com/minrk/pamela/archive/${pkgver}.tar.gz")
md5sums=('8204bfa354129dcd9301de0f75d5e219')
package() {
cd "$srcdir/pamela-$pkgver"
python setup.py install --root="${pkgdir}" --optimize=1
}