blob: ee0b796f513209a176f5b6ab5336f74c9a226efb (
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
|
pkgname=python-orange
pkgver=3.15.0
pkgrel=1
pkgdesc="Open source data visualization and analysis for novice and experts. Data mining through visual programming or Python scripting."
arch=('i686' 'x86_64')
url="http://orange.biolab.si/"
license=('GPL3')
makedepends=('python-setuptools')
depends=('python-beautifulsoup4' 'python-chardet' 'python-docutils' 'python-pyqtgraph' 'python-xlrd' 'python-matplotlib' 'python-scikit-learn' 'python-recommonmark' 'python-sqlparse' 'python-psycopg2' 'python-joblib' 'python-keyrings-alt' 'python-bottleneck' 'python-anyqt' 'python-dill' 'python-pip' 'python-serverfiles')
source=("https://github.com/biolab/orange3/archive/${pkgver}.tar.gz")
sha256sums=('e3fd38bc393aba34f3154e9c3bdf5b95064ad159616706a9e064dd17256e2b32')
build() {
cd "${srcdir}/orange3-$pkgver"
python setup.py build
}
package() {
cd "${srcdir}/orange3-$pkgver"
python setup.py install --root="${pkgdir}" --optimize=1
install -Dm644 distribute/orange-canvas.desktop "${pkgdir}"/usr/share/applications/orange-canvas.desktop
install -Dm644 distribute/icon-256.png "${pkgdir}"/usr/share/icons/hicolor/256x256/apps/orange-canvas.png
}
|