fixed PKGBUILD for python2-pyqtgraph
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Windel Bouwman <windel at windel dot nl> | |
# Contributor: Jakub Klinkovský <kuba.klinkovsky@gmail.com> | |
pkgname=python2-pyqtgraph | |
_pkgname=pyqtgraph | |
pkgver=0.9.7 | |
pkgrel=1 | |
pkgdesc="Scientific Graphics and GUI Library for Python" | |
arch=('i686' 'x86_64') | |
license='MIT' | |
url="http://www.pyqtgraph.org/" | |
depends=('python2' 'python2-pyqt4' 'python2-numpy') | |
optdepends=('python2-opengl') | |
source=("http://www.pyqtgraph.org/downloads/pyqtgraph-${pkgver}.tar.gz") | |
md5sums=('53f1e9c5ad5ea52dd66d120aff2c617a') | |
package() { | |
cd "$srcdir/$_pkgname-$pkgver" | |
python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize 1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment