PKGBUILD for dispass 0.1a7

This commit is contained in:
Tom Willemsen 2012-06-23 12:19:49 +02:00
commit c028a0f341
2 changed files with 25 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
*.tar.*
src/

23
python2-dispass/PKGBUILD Normal file
View file

@ -0,0 +1,23 @@
# Maintainer: Tom Willemsen <tom@ryuslash.org>
pkgname=python2-dispass
pkgver=0.1a7
pkgrel=1
pkgdesc="Generate and disperse/dispell passwords"
depends=('python2')
makedepends=('python2-distribute')
arch=('any')
source=(http://pypi.python.org/packages/source/D/DisPass/DisPass-$pkgver.tar.gz)
md5sums=(2dc25ea38db954e7233fe06e39e41120)
url="http://pypi.python.org/pypi/DisPass/"
license=("ISC")
build() {
cd $srcdir/DisPass-$pkgver
python2 setup.py build || return 1
}
package() {
cd $srcdir/DisPass-$pkgver
python2 setup.py install --root=$pkgdir
}