updated on Tue Jan 17 12:00:36 UTC 2012
[aur-mirror.git] / hpgl / PKGBUILD
blob13c179398075e6d1fc168b7d84330857d55bf9df
1 # Contributor: Dominik Fuchs <dominik.fuchs@wur.nl>
3 pkgname=hpgl
4 pkgver=0.9.9
5 pkgrel=1
6 pkgdesc="HPGL stands for 'High Performance Geostatistics Library'. The goal of this project is to provide free-to-use and modify high-perfomance geostatistical algorithms (such as Kriging, CoKriging, Sequential Simulation, etc)."
7 arch=('any')
8 license=('bsd')
9 url="http://hpgl.sourceforge.net/"
10 depends=('python-numpy' 'python-scipy')
11 makedepends=('setuptools')
12 optdepends=()
13 source=(http://downloads.sourceforge.net/project/hpgl/hpgl/0.9.9/hpgl-bsd-0.9.9_src.tar.gz)
14 md5sums=('a3f17cc720f662ea9d8662c1380b6b29')
15 provides=('hpgl')
16 conflicts=('hpgl-git')
18 build() {
19   # compile libfc2
20   cd "$srcdir/hpgl/CLAPACK-3.1.1.1"
21   make f2clib
22   mv "$srcdir/hpgl/CLAPACK-3.1.1.1/F2CLIBS/libf2c.a" "$srcdir/hpgl/CLAPACK-3.1.1.1/libf2c.a"
24   # configure & compile HPGL
25   cd "${srcdir}/hpgl"
26   scons -c
27   scons
29   # assemble package & install
30   mkdir ${srcdir}/hpgl/temp/geo_bsd
31   cp geo_bsd/*.py ${srcdir}/hpgl/temp/geo_bsd
32   cp geo_bsd/*.so ${srcdir}/hpgl/temp/geo_bsd
33   cp setup.py ${srcdir}/hpgl/temp/
34   cd ${srcdir}/hpgl/temp/
35   python setup.py install --prefix=/usr --root="$pkgdir" || return 1