mirror of
https://github.com/archlinux/aur.git
synced 2026-01-27 20:28:31 +01:00
added initial set of pkgbuilds
This commit is contained in:
commit
f81ecbe8a5
2 changed files with 37 additions and 0 deletions
17
.SRCINFO
Normal file
17
.SRCINFO
Normal 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
20
PKGBUILD
Normal 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}
|
||||
}
|
||||
|
||||
Loading…
Add table
Reference in a new issue