summaryrefslogtreecommitdiff
path: root/community/ginac/PKGBUILD
blob: 5468f6f69773196b9c133db99845c5d09b565d08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Maintainer: Thomas Dziedzic < gostrc at gmail >
# Contributor: Thomas Baechler <thomas@archlinux.org>

pkgname=ginac
pkgver=1.6.1
pkgrel=1
pkgdesc='A set of libraries that allow the creation of integrated systems that embed symbolic manipulations.'
arch=('i686' 'x86_64')
url='http://www.ginac.de'
license=('GPL')
depends=('cln')
makedepends=('transfig' 'doxygen' 'texlive-bin')
options=('!libtool')
source=("ftp://ftpthep.physik.uni-mainz.de/pub/GiNaC/ginac-${pkgver}.tar.bz2")
md5sums=('d383f3ee50f88ffa1b3966fdb11d0f12')

build() {
  cd ginac-${pkgver}

  ./configure \
    --prefix=/usr

  make
}

check() {
  cd ginac-${pkgver}

  make check
}

package() {
  cd ginac-${pkgver}

  make DESTDIR=${pkgdir} install
}