summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarsten Teibes2016-05-01 10:48:22 +0200
committerCarsten Teibes2016-05-01 10:48:22 +0200
commit6aa90445e3b670d6fdb1460ce40eb587a7a1644d (patch)
treeb207f86b8072afe1604c52a643277682fb530b45
parent3c74d82983a0a08fffa0d5b67a881cc0b43b16bc (diff)
downloadaur-6aa90445e3b670d6fdb1460ce40eb587a7a1644d.tar.gz
[fix] a warning
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD7
2 files changed, 7 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 445f85933080..266c1acb6eb6 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = liblcf
pkgdesc = Library to handle RPG Maker 2000/2003 and EasyRPG projects
pkgver = 0.4.1
- pkgrel = 1
+ pkgrel = 2
url = https://easy-rpg.org/
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index e074f578fa3e..c94ff76a7f1e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=liblcf
pkgver=0.4.1
-pkgrel=1
+pkgrel=2
pkgdesc="Library to handle RPG Maker 2000/2003 and EasyRPG projects"
arch=('i686' 'x86_64')
url="https://easy-rpg.org/"
@@ -11,6 +11,11 @@ depends=('gcc-libs' 'expat' 'icu')
source=("https://easy-rpg.org/downloads/player/liblcf-$pkgver.tar.gz")
sha256sums=('038a3c382759a27956338d983043f330afeb71caefc4f5de8966925ebff539fe')
+prepare() {
+ # fix a warning
+ sed -i 's|^time_stamp_CXXFLAGS =|& -std=c++11|' liblcf-$pkgver/Makefile.{in,am}
+}
+
build () {
cd liblcf-$pkgver