PKGBUILDs/community/libscigraphica/PKGBUILD

23 lines
709 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
pkgname=libscigraphica
pkgver=2.1.1
pkgrel=2
pkgdesc="Supporting library for scigraphica"
arch=('i686' 'x86_64')
url="http://scigraphica.sourceforge.net/"
license=('GPL')
depends=('gtk2+extra>=2.1.1' 'python-numarray' 'libxml2')
makedepends=()
options=('!libtool')
source=(http://downloads.sourceforge.net/scigraphica/$pkgname-$pkgver.tar.gz)
md5sums=('1966786bcc8c47036e35777cbda422c3')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr --with-python-numeric-path=/usr/include/python2.5/numarray
make || return 1
make DESTDIR=$startdir/pkg install
}
# vim:syntax=sh