summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodrigo Bezerra2020-08-19 22:38:19 -0300
committerRodrigo Bezerra2020-08-19 22:38:19 -0300
commitb2d8810c2850750344604e046cb568eab768ea22 (patch)
tree278fbfaf4e142fbb76d0f7566dc178229f06e0df
parent7e176efcdca6d89c25cfbe1edb817ee9ab448cc0 (diff)
downloadaur-lib32-liblrdf.tar.gz
Fix CXXFLAGS
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
2 files changed, 5 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 43ac3b19f8ff..890b2c328a34 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = lib32-liblrdf
pkgdesc = A library for the manipulation of RDF file in LADSPA plugins (32 bit)
pkgver = 0.6.1
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/swh/LRDF
arch = x86_64
license = GPL2
diff --git a/PKGBUILD b/PKGBUILD
index a455b722554f..fc2bc21ef423 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
_pkgname=liblrdf
pkgname=lib32-liblrdf
pkgver=0.6.1
-pkgrel=2
+pkgrel=3
pkgdesc="A library for the manipulation of RDF file in LADSPA plugins (32 bit)"
arch=('x86_64')
url="https://github.com/swh/LRDF"
@@ -29,6 +29,9 @@ build() {
export CXX='g++ -m32'
export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+ # raptor.h changed location
+ export CXXFLAGS="$(pkg-config --cflags raptor2) ${CXXFLAGS}"
+
./configure \
--build=i686-pc-linux-gnu \
--prefix=/usr \