summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucas Heitzmann Gabrielli2017-04-26 16:00:18 -0300
committerLucas Heitzmann Gabrielli2017-04-26 16:00:18 -0300
commitc9c64188c4387bc3cdf53cc1e0ca71ce55b268db (patch)
tree84c8d95faa68f00267d69fe4c0980d099968ec11
parent9540a49d205ce4dae25f7a68d5f77af068805b63 (diff)
downloadaur-c9c64188c4387bc3cdf53cc1e0ca71ce55b268db.tar.gz
Avoid incompatibilities with Guile 2.2
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD6
2 files changed, 5 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index fd0aa81f3d3a..d8df6c7e607c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,14 +1,12 @@
-# Generated by mksrcinfo v8
-# Sat Dec 19 14:48:54 UTC 2015
pkgbase = libctl
pkgdesc = A free Guile-based library implementing flexible control files for scientific simulations.
pkgver = 3.2.2
- pkgrel = 1
+ pkgrel = 2
url = http://ab-initio.mit.edu/wiki/index.php/Libctl
arch = i686
arch = x86_64
license = GPL
- depends = guile
+ depends = guile2.0
depends = gcc-fortran
options = !libtool
source = http://ab-initio.mit.edu/libctl/libctl-3.2.2.tar.gz
diff --git a/PKGBUILD b/PKGBUILD
index a9899bd77def..a8aa51b8a5a9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,10 +4,10 @@
pkgname=libctl
pkgver=3.2.2
-pkgrel=1
+pkgrel=2
arch=('i686' 'x86_64')
pkgdesc="A free Guile-based library implementing flexible control files for scientific simulations."
-depends=('guile' 'gcc-fortran')
+depends=('guile2.0' 'gcc-fortran')
source=(http://ab-initio.mit.edu/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('5fd7634dc9ae8e7fa70a68473b9cbb68')
url="http://ab-initio.mit.edu/wiki/index.php/Libctl"
@@ -16,7 +16,7 @@ options=('!libtool')
build() {
cd ${srcdir}/$pkgname-$pkgver
- ./configure --prefix=/usr LIBS="-lm"
+ ./configure --prefix=/usr LIBS="-lm" GUILE='/usr/bin/guile2.0' GUILE_CONFIG='/usr/bin/guile-config2.0'
make
}
package() {