summaryrefslogtreecommitdiff
path: root/pcr/modglue/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/modglue/PKGBUILD')
-rw-r--r--pcr/modglue/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/pcr/modglue/PKGBUILD b/pcr/modglue/PKGBUILD
new file mode 100644
index 000000000..1fd5b3e35
--- /dev/null
+++ b/pcr/modglue/PKGBUILD
@@ -0,0 +1,28 @@
+# Contributor (Arch): Dariusz 'quasi' Panchyrz <quasi@aur.archlinux.org>
+# Maintainer: André Silva <emulatorman@parabola.nu>
+
+pkgname=modglue
+pkgver=1.19
+pkgrel=1
+pkgdesc="Modglue library for Cadabra computer algebra system (CAS)"
+arch=('i686' 'x86_64')
+url="http://cadabra.phi-sci.com/"
+license=('GPL')
+depends=('libsigc++')
+install=$pkgname.install
+source=(http://cadabra.phi-sci.com/$pkgname-$pkgver.tar.gz)
+md5sums=('0d3d764c93f8c1464852f78d8493476b')
+
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+
+ ./configure --prefix=/usr
+ make -j1
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgver
+
+ make -j1 DESTDIR=$pkgdir install
+}