summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorClément Démoulins2017-06-08 15:11:33 +0200
committerClément Démoulins2017-06-08 15:11:33 +0200
commit7c8c2eaf5c0404f009aa47779e71c6c4a7cd3470 (patch)
treeeb0fa5b95e55313ac08bcf1921dc3bc0a1949364
parent272bb8aa0a2db029ba7b91dc0fac1eee9bc564ed (diff)
downloadaur-7c8c2eaf5c0404f009aa47779e71c6c4a7cd3470.tar.gz
Fix python binding with boost python 1.64
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD6
2 files changed, 6 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index a6d8ca02349b..0e930abeb02c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Wed Feb 8 15:00:32 UTC 2017
+# Thu Jun 8 13:11:18 UTC 2017
pkgbase = vcsn
pkgdesc = Finite state machine manipulation platform, consisting of a library and tools implemented on top of it.
pkgver = 2.5
- pkgrel = 2
+ pkgrel = 3
url = http://vcsn.lrde.epita.fr/
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 541d03c30aa5..1cb9733d3acb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=vcsn
pkgver=2.5
-pkgrel=2
+pkgrel=3
pkgdesc="Finite state machine manipulation platform, consisting of a library and tools implemented on top of it."
arch=('i686' 'x86_64')
url="http://vcsn.lrde.epita.fr/"
@@ -23,7 +23,9 @@ check() {
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix="/usr" CXXFLAGS='-O3' CPPFLAGS='-DNDEBUG'
- make
+ # make
+ # Temporary fix for Boost Python 1.64
+ make VISIBILITY_CXXFLAGS=""
}
package() {