Update Ipopt + add voidwalker.

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

17
.SRCINFO Normal file
View file

@ -0,0 +1,17 @@
pkgbase = python2-flowui-git
pkgdesc = A flow-based data presentation framework for terminals. Git version.
pkgver = 0.2.1.d14b2af
pkgrel = 1
url = http://github.com/dholm/FlowUI/
arch = any
license = BSD
makedepends = python2
makedepends = git
depends = python2
provides = python2-flowui
conflicts = python2-flowui
source = FlowUI::git+https://github.com/dholm/FlowUI.git
md5sums = SKIP
pkgname = python2-flowui-git

31
PKGBUILD Normal file
View file

@ -0,0 +1,31 @@
pkgname=python2-flowui-git
pkgver=0.2.1.d14b2af
_pkgver=0.2.1
pkgrel=1
pkgdesc="A flow-based data presentation framework for terminals. Git version."
url="http://github.com/dholm/FlowUI/"
depends=('python2')
makedepends=('python2' 'git')
license=('BSD')
arch=('any')
source=("FlowUI::git+https://github.com/dholm/FlowUI.git")
md5sums=('SKIP')
provides=(python2-flowui)
conflicts=(python2-flowui)
pkgver() {
cd $srcdir/FlowUI
git describe --long | sed -r 's/([^-]*-g)/r\1/;s/-/./g'
printf "%s.%s" "$_pkgver" "$(git rev-parse --short HEAD)"
}
build() {
cd $srcdir/FlowUI
python2 setup.py build
}
package() {
cd $srcdir/FlowUI
python2 setup.py install --root="$pkgdir" --optimize=1
}