summaryrefslogtreecommitdiff
path: root/community/ginac/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-01-02 03:49:21 -0800
committerroot <root@rshg054.dnsready.net>2013-01-02 03:49:21 -0800
commitfa3e18ade0ab762a414c45ec433025d96b71254b (patch)
tree08ecca2723365f71ce85521c2ef8103921407d4f /community/ginac/PKGBUILD
parentc288a123dd9113afec1a1cc6a2d62fde30307cfa (diff)
Wed Jan 2 03:49:21 PST 2013
Diffstat (limited to 'community/ginac/PKGBUILD')
-rw-r--r--community/ginac/PKGBUILD12
1 files changed, 8 insertions, 4 deletions
diff --git a/community/ginac/PKGBUILD b/community/ginac/PKGBUILD
index 01c21fd7a..26109b01b 100644
--- a/community/ginac/PKGBUILD
+++ b/community/ginac/PKGBUILD
@@ -1,5 +1,6 @@
-# $Id: PKGBUILD 174027 2013-01-02 02:57:17Z stephane $
+# $Id: PKGBUILD 81849 2013-01-02 03:07:05Z stephane $
# Maintainer: Stéphane Gaudreault <stephane@archlinux.org>
+# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: Thomas Baechler <thomas@archlinux.org>
pkgname=ginac
@@ -7,27 +8,30 @@ pkgver=1.6.2
pkgrel=2
pkgdesc="C++ library for symbolic calculations"
arch=('i686' 'x86_64')
-url="http://www.ginac.de/"
-license=("GPL")
+url='http://www.ginac.de/'
+license=('GPL')
depends=('cln')
makedepends=('transfig' 'doxygen' 'texlive-bin')
source=(http://www.ginac.de/${pkgname}-${pkgver}.tar.bz2)
sha1sums=('c93913c4c543874b2ade4f0390030641be7e0c41')
-options=(!libtool)
install=${pkgname}.install
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
+
./configure --prefix=/usr --disable-static
+
make
}
check() {
cd "${srcdir}/${pkgname}-${pkgver}"
+
make check
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
+
make DESTDIR="${pkgdir}" install
}