PKGBUILDs/aur/python2-configshell-fb/PKGBUILD
Kevin Mihelich 6f0c7da35d aur updates
2013-03-17 21:07:51 +00:00

29 lines
784 B
Bash

# Contributor: Johannes Dewender arch at JonnyJD dot net
pkgname=python2-configshell-fb
_pkgname=configshell-fb
pkgver=1.1.fb5
pkgrel=1
epoch=
pkgdesc="python framework for building simple CLI applications (free branch)"
arch=('any')
url="https://github.com/agrover/configshell-fb"
license=('AGPL3')
depends=('python2-simpleparse' 'python2-urwid')
provides=('python2-configshell')
conflicts=('python2-configshell')
options=()
source=($_pkgname-$pkgver.tar.gz::https://github.com/agrover/$_pkgname/archive/v$pkgver.tar.gz)
md5sums=('93dff95676042227b95d0abbfc134ad8')
build() {
cd "$srcdir/$_pkgname-$pkgver"
python2 setup.py build
}
package() {
cd "$srcdir/$_pkgname-$pkgver"
python2 setup.py install --skip-build --root="$pkgdir/" --optimize=1
}
# vim:set ts=2 sw=2 et: