updated on Sat Jan 14 12:12:45 UTC 2012
[aur-mirror.git] / tisean / PKGBUILD
blob412924169137368f71cf4708faf93d3d3baa5479
1 # Contributor: Roman Timushev <rtimush@gmail.com>
2 pkgname=tisean
3 pkgver=3.0.1
4 pkgrel=2
5 pkgdesc="a software project for the analysis of time series with methods based on the theory of nonlinear deterministic dynamical systems"
6 arch=(i686 x86_64)
7 url="http://www.mpipks-dresden.mpg.de/~tisean/"
8 license=('GPL')
9 groups=()
10 depends=()
11 makedepends=()
12 provides=()
13 conflicts=()
14 replaces=()
15 backup=()
16 options=()
17 install=
18 source=(http://www.mpipks-dresden.mpg.de/~tisean/TISEAN_$pkgver.tar.gz)
19 noextract=()
20 md5sums=('733e585a5125b272618e7e4f98580c5d')
22 build() {
23   cd "$srcdir/Tisean_$pkgver"
24   
25   export FC=/usr/bin/gfortran
26   
27   ./configure --prefix=$pkgdir/usr
28   patch Makefile ../../patch
29   make || return 1
30   mkdir -p $pkgdir/usr/bin
31   make install
33   cd $pkgdir/usr/bin
34   for i in *; do mv $i $pkgname-$i; done
37 # vim:set ts=2 sw=2 et: