Skip to content

Instantly share code, notes, and snippets.

@lahwaacz
Last active December 18, 2015 22:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lahwaacz/5856679 to your computer and use it in GitHub Desktop.
Save lahwaacz/5856679 to your computer and use it in GitHub Desktop.
fixed PKGBUILD for python2-pyqtgraph
# 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