mirror of
https://github.com/archlinux/aur.git
synced 2026-02-28 02:13:05 +01:00
Initial import
This commit is contained in:
commit
7773fe815c
2 changed files with 46 additions and 0 deletions
19
.SRCINFO
Normal file
19
.SRCINFO
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
pkgbase = python2-seqlearn-git
|
||||
pkgdesc = A sequence classification toolkit for Python.
|
||||
pkgver = 20141124
|
||||
pkgrel = 1
|
||||
url = http://larsmans.github.io/seqlearn/
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
license = custom: Copyright 2013-2014 Lars Buitinck / University of Amsterdam and contributors
|
||||
makedepends = git
|
||||
depends = python2
|
||||
depends = python2-numpy>=1.6
|
||||
depends = python2-scipy>=0.11
|
||||
depends = cython2>=0.20.2
|
||||
options = !emptydirs
|
||||
source = git://github.com/larsmans/seqlearn.git
|
||||
md5sums = SKIP
|
||||
|
||||
pkgname = python2-seqlearn-git
|
||||
|
||||
27
PKGBUILD
Normal file
27
PKGBUILD
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# 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:
|
||||
Loading…
Add table
Reference in a new issue