summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorClément Démoulins2016-05-27 11:53:00 +0200
committerClément Démoulins2016-05-27 11:53:00 +0200
commit1e955d0a062b15438f58b281eaf8f63316a37ac5 (patch)
tree64c1c75596e0d5327e8d1dddeedd0017ffba06e3
parent03452291006ff49380c30d609d7ac42503048e43 (diff)
downloadaur-1e955d0a062b15438f58b281eaf8f63316a37ac5.tar.gz
Fix path in check()
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD6
2 files changed, 6 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0a17ea8baf71..799e2580c417 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,10 +1,10 @@
# Generated by mksrcinfo v8
-# Wed Feb 24 14:29:44 UTC 2016
+# Fri May 27 09:52:50 UTC 2016
pkgbase = vcsn
pkgdesc = Finite state machine manipulation platform, consisting of a library and tools implemented on top of it.
pkgver = 2.2
- pkgrel = 1
- url = http://vaucanson.lrde.epita.fr/
+ pkgrel = 2
+ url = http://vcsn.lrde.epita.fr/
arch = i686
arch = x86_64
license = GPL3
diff --git a/PKGBUILD b/PKGBUILD
index b28e4cb46988..ea7f36304b6b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,10 +2,10 @@
pkgname=vcsn
pkgver=2.2
-pkgrel=1
+pkgrel=2
pkgdesc="Finite state machine manipulation platform, consisting of a library and tools implemented on top of it."
arch=('i686' 'x86_64')
-url="http://vaucanson.lrde.epita.fr/"
+url="http://vcsn.lrde.epita.fr/"
license=('GPL3')
depends=('boost' 'gcc' 'ccache' 'libltdl' 'jupyter' 'mathjax' 'graphviz')
makedepends=('texlive-core' 'doxygen' 'python2-docutils')
@@ -15,7 +15,7 @@ source=("https://www.lrde.epita.fr/dload/vcsn/$pkgver/$pkgname-$pkgver.tar.xz")
md5sums=('48e479d34a047df4507d1e7b322bfb16')
check() {
- cd "$srcdir/${_realname}"
+ cd "$srcdir/$pkgname-$pkgver"
./tests/bin/vcsn python -c 'import vcsn; vcsn.B.expression("a").automaton()'
}