diff options
Diffstat (limited to 'community/ginac/PKGBUILD')
-rw-r--r-- | community/ginac/PKGBUILD | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/community/ginac/PKGBUILD b/community/ginac/PKGBUILD index 432ccbef4..5468f6f69 100644 --- a/community/ginac/PKGBUILD +++ b/community/ginac/PKGBUILD @@ -2,17 +2,17 @@ # Contributor: Thomas Baechler <thomas@archlinux.org> pkgname=ginac -pkgver=1.6.0 +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') +makedepends=('transfig' 'doxygen' 'texlive-bin') options=('!libtool') source=("ftp://ftpthep.physik.uni-mainz.de/pub/GiNaC/ginac-${pkgver}.tar.bz2") -md5sums=('6d1385b440c00705a368ad51d60a292d') +md5sums=('d383f3ee50f88ffa1b3966fdb11d0f12') build() { cd ginac-${pkgver} @@ -21,6 +21,10 @@ build() { --prefix=/usr make +} + +check() { + cd ginac-${pkgver} make check } |