PKGBUILDs/aur/python2-configshell-fb/PKGBUILD

30 lines
808 B
Bash
Raw Normal View History

2013-03-17 21:07:51 +00:00
# Contributor: Johannes Dewender arch at JonnyJD dot net
pkgname=python2-configshell-fb
_pkgname=configshell-fb
2014-01-12 18:45:46 +00:00
pkgver=1.1.fb11
2013-11-16 18:40:58 +00:00
pkgrel=1
2013-03-17 21:07:51 +00:00
epoch=
pkgdesc="python framework for building simple CLI applications (free branch)"
arch=('any')
url="https://github.com/agrover/configshell-fb"
2013-08-13 01:17:55 +00:00
license=('Apache')
2013-10-11 17:15:47 +00:00
depends=('python2-pyparsing' 'python2-urwid')
makedepends=('python2-setuptools')
2013-03-17 21:07:51 +00:00
provides=('python2-configshell')
conflicts=('python2-configshell')
options=()
2013-10-11 17:15:47 +00:00
source=(https://fedorahosted.org/releases/t/a/targetcli-fb/$_pkgname-$pkgver.tar.gz)
2014-01-12 18:45:46 +00:00
md5sums=('df98b31141060d37f4656528a0c3b711')
2013-03-17 21:07:51 +00:00
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: