Update Ipopt + add voidwalker.

This commit is contained in:
Benjamin Chrétien 2014-05-16 19:33:56 +02:00
commit a3ee838b96
2 changed files with 37 additions and 0 deletions

14
.SRCINFO Normal file
View file

@ -0,0 +1,14 @@
pkgbase = python2-flowui
pkgdesc = A flow-based data presentation framework for terminals
pkgver = 0.2.1
pkgrel = 1
url = http://github.com/dholm/FlowUI/
arch = any
license = BSD
makedepends = python2
depends = python2
source = https://pypi.python.org/packages/source/F/FlowUI/FlowUI-0.2.1.tar.gz
md5sums = 2f4268fbd41a80326586e8d90abaeb0c
pkgname = python2-flowui

23
PKGBUILD Normal file
View file

@ -0,0 +1,23 @@
#Automatically generated by pip2arch on 2014-05-16
pkgname=python2-flowui
pkgver=0.2.1
pkgrel=1
pkgdesc="A flow-based data presentation framework for terminals"
url="http://github.com/dholm/FlowUI/"
depends=('python2')
makedepends=('python2')
license=('BSD')
arch=('any')
source=("https://pypi.python.org/packages/source/F/FlowUI/FlowUI-$pkgver.tar.gz")
md5sums=('2f4268fbd41a80326586e8d90abaeb0c')
build() {
cd $srcdir/FlowUI-$pkgver
python2 setup.py build
}
package() {
cd $srcdir/FlowUI-$pkgver
python2 setup.py install --root="$pkgdir" --optimize=1
}