added initial set of pkgbuilds

This commit is contained in:
Sven Schneider 2012-04-06 17:09:12 +02:00
commit f81ecbe8a5
2 changed files with 37 additions and 0 deletions

17
.SRCINFO Normal file
View file

@ -0,0 +1,17 @@
pkgbase = python2-oger
pkgdesc = OrGanic Environment for Reservoir computing (Oger) is a Python toolbox for building, training and evaluating modular learning architectures
pkgver = 1.1.2
pkgrel = 1
url = http://organic.elis.ugent.be/organic/engine
arch = any
license = GPL
makedepends = cmake
depends = python2-numpy
depends = python2-scipy
depends = python2-matplotlib
depends = python2-mdp
source = http://organic.elis.ugent.be/sites/organic.elis.ugent.be/files/Oger-1.1.2.tar.gz
md5sums = fe02dc000c8ce2a3049f7ec36f70d4cb
pkgname = python2-oger

20
PKGBUILD Normal file
View file

@ -0,0 +1,20 @@
# Maintainer: Sven Schneider <archlinux.sandmann@googlemail.com>
pkgname=python2-oger
pkgver=1.1.2
pkgrel=1
pkgdesc="OrGanic Environment for Reservoir computing (Oger) is a Python toolbox for building, training and evaluating modular learning architectures"
arch=('any')
url="http://organic.elis.ugent.be/organic/engine"
license=('GPL')
depends=('python2-numpy' 'python2-scipy' 'python2-matplotlib' 'python2-mdp')
makedepends=('cmake')
source=(http://organic.elis.ugent.be/sites/organic.elis.ugent.be/files/Oger-${pkgver}.tar.gz)
md5sums=('fe02dc000c8ce2a3049f7ec36f70d4cb')
build() {
cd ${srcdir}/Oger-${pkgver}
python2 setup.py install --root=${pkgdir}
}