PKGBUILDs/aur/python2-configshell/PKGBUILD
2011-10-17 23:18:32 -04:00

28 lines
743 B
Bash

# Contributor: Johannes Dewender arch at JonnyJD dot net
# Contributor: Kevin Mihelich <kevin@plugapps.com>
plugrel=1
pkgname=python2-configshell
_pkgname=configshell
pkgver=1.1
pkgrel=3
pkgdesc="python framework for building simple CLI-based applications"
arch=('any')
url="http://www.risingtidesystems.com/git/?p=configshell.git;a=summary"
license=('AGPL3')
depends=('python2-simpleparse' 'python-urwid' 'epydoc')
makedepends=('python2-distribute')
source=(http://archlinuxarm.org/builder/src/"$_pkgname-$pkgver.tgz")
md5sums=('2c9a1c7c4416970bc3049c959101c8f2')
build() {
cd "$srcdir/$_pkgname"
python2 setup.py build
}
package() {
cd "$srcdir/$_pkgname"
python2 setup.py install --skip-build --root="$pkgdir/" --optimize=1
}