File: PKGBUILD

package info (click to toggle)
python-pampy 2.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208 kB
  • sloc: python: 838; makefile: 46
file content (22 lines) | stat: -rw-r--r-- 692 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: David Ford <david@blue-labs.org>
pkgname=python-pam
pkgver=2.0.0rc1
pkgrel=2
pkgdesc="Linux, FreeBSD, etc (any system that uses PAM) PAM module that provides an
authenticate function given a username, password, and other optional keywords."
arch=('any')
url="https://github.com/FirefighterBlu3/python-pam"
license=('MIT')
depends=('python' 'pam')
makedepends=('python-setuptools')
options=(!emptydirs)
changelog=(ChangeLog)
source=(https://pypi.python.org/packages/source/p/${pkgname}/${pkgname}-${pkgver}.tar.gz)
md5sums=(db71b6b999246fb05d78ecfbe166629d)

package() {
  cd "$pkgname-$pkgver"
  python setup.py install --root="$pkgdir/" --optimize=1
}

# vim:set ts=2 sw=2 et: