mirror of
https://github.com/archlinux/aur.git
synced 2026-02-28 07:23:13 +01:00
27 lines
708 B
Bash
27 lines
708 B
Bash
# Maintainer: Ashley Whetter <(firstname) @ awhetter.co.uk>
|
|
|
|
pkgname=python2-seqlearn-git
|
|
pkgver=20141124
|
|
pkgrel=1
|
|
pkgdesc="A sequence classification toolkit for Python."
|
|
arch=('i686' 'x86_64')
|
|
url="http://larsmans.github.io/seqlearn/"
|
|
license=('custom: Copyright 2013-2014 Lars Buitinck / University of Amsterdam and contributors')
|
|
groups=()
|
|
depends=('python2' 'python2-numpy>=1.6' 'python2-scipy>=0.11' 'cython2>=0.20.2')
|
|
makedepends=('git')
|
|
provides=()
|
|
conflicts=()
|
|
replaces=()
|
|
backup=()
|
|
options=(!emptydirs)
|
|
install=
|
|
source=(git://github.com/larsmans/seqlearn.git)
|
|
md5sums=("SKIP")
|
|
|
|
package() {
|
|
cd "$srcdir/seqlearn"
|
|
python2 setup.py install --root="$pkgdir/" --optimize=1
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|