blob: a779481b4fc4361ac6c375e5fab74aec9dc8a62d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Contributor (Arch) : Fabian Yamaguchi <fabian.yamaguchi@cs.uni-goettingen.de>
# Maintainer (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp>
# Based on shogun-git package by
# Alex Babescu <alex.babescu@gmail.com>
pkgname=shogun
pkgver=3.2.0
pkgrel=1
pkgdesc="Shogun - A Large Scale Machine Learning Toolbox"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.shogun-toolbox.org"
license=('GPLv3')
depends=('python2' 'python2-numpy' 'swig' 'hdf5' 'blas' 'lapack')
makedepends=('git' 'python2' 'lzo2' 'glpk' 'gcc' 'make' 'pkg-config' 'libxml2')
optdepends=('atlas-lapack' 'octave' 'doxygen' 'r')
provides=('shogun')
source=("http://shogun-toolbox.org/archives/shogun/releases/3.2/sources/shogun-3.2.0.tar.bz2")
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
# msg "Starting make..."
# python2 fix
# sed -i 's/PYTHON=python/PYTHON=python2/g' src/configure
# sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
# -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
# $(find ./ -name '*.py')
#cd src
#./configure --prefix=/usr
#make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}/src"
make DESTDIR="$pkgdir/" .r-install.sh
}
|