updated on Thu Jan 26 00:18:00 UTC 2012
[aur-mirror.git] / libmath++ / PKGBUILD
blobd9353d942ff8c8d3ab2d68671aba99281e4282a1
1 # Maintainer : Tasos Latsas <tlatsas2000@gmail.com>
2 # Contributor: Stefan Husmann <stefan-husmann@t-online.de>
3 # Contributor: Kritoke <typeolinux@yahoo.com>
4 # Contributor: damir <damir@archlinux.org>
6 pkgname=libmath++
7 pkgver=0.0.4
8 pkgrel=3
9 pkgdesc="A template based math library, written in C++, for symbolic and numeric calculus applications."
10 arch=('i686' 'x86_64')
11 license=('GPL')
12 depends=('glibc')
13 url="http://www.surakware.net/projects/libmath++/index.xml"
14 source=(http://ftp.debian.org/debian/pool/main/libm/$pkgname/${pkgname}_$pkgver.orig.tar.gz)
15 md5sums=('ef2933a45df4def2d0a37f560399c9ad')
17 build() {
18   cd "$srcdir/$pkgname-$pkgver"
20   #aclocal && autoheader && autoconf && libtoolize --automake && automake -ac
21   ./autogen.sh
22   ./configure --prefix=/usr
23   make
26 package() {
27   cd "$srcdir/$pkgname-$pkgver"
28   make DESTDIR="$pkgdir" install
29   # libtoolslay
30   find "$pkgdir" -name '*.la' -delete