PKGBUILD for dispass 0.1a7
This commit is contained in:
commit
c028a0f341
2 changed files with 25 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
*.tar.*
|
||||
src/
|
23
python2-dispass/PKGBUILD
Normal file
23
python2-dispass/PKGBUILD
Normal 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
|
||||
}
|
Loading…
Reference in a new issue