mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
709 B
Bash
22 lines
709 B
Bash
# $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
|