Skip to content

Instantly share code, notes, and snippets.

@runical
Created October 5, 2013 21:03
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 runical/6845989 to your computer and use it in GitHub Desktop.
Save runical/6845989 to your computer and use it in GitHub Desktop.
PKGBUILD for oct2py
pkgname=python-oct2py
pkgver=1.0.0
pkgrel=1
pkgdesc="Python to GNU Octave bridge."
arch=('any')
url="http://github.com/blink1073/oct2py"
license=('MIT')
depends=('python' 'python-scipy' 'python-numpy' 'octave' )
source=("https://pypi.python.org/packages/source/o/oct2py/oct2py-$pkgver.tar.gz")
md5sums=('19c3ecdd014b15c0843d19e0f5b8e091')
package() {
cd "$srcdir/oct2py-$pkgver"
python setup.py install --root="$pkgdir/" --optimize=1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment