summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorReihar2015-10-30 23:39:21 +0100
committerReihar2015-10-30 23:39:21 +0100
commit09b9d65f0dd73cdc362b1532e3bb6d43948539c2 (patch)
tree435510dabe60945b60c9739706e5a7abbe8de740
parentc8d94c86a32a6d591eb876ba2f504faf50211502 (diff)
downloadaur-09b9d65f0dd73cdc362b1532e3bb6d43948539c2.tar.gz
Fixed ncurses problems added a comment about localizations
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD8
2 files changed, 9 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e673e82312b4..f92467203b10 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,9 @@
+# Generated by mksrcinfo v7
+# Fri Oct 30 22:39:03 UTC 2015
pkgbase = cataclysm-dda-ncurses
pkgdesc = Cataclysm: Dark Days Ahead is an actively maintained roguelike set in a post-apocalyptic world, forked from the original. (ncurses only)
pkgver = 0.C
- pkgrel = 3
+ pkgrel = 4
url = http://www.cataclysmdda.com/
install = cataclysm-dda-ncurses.install
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index e069b9b5661c..af24c9d75d2c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
# Contributor: Fernando Carmona Varo <ferkiwi @t gmail dot com>
pkgname=cataclysm-dda-ncurses
pkgver=0.C
-pkgrel=3
+pkgrel=4
pkgdesc="Cataclysm: Dark Days Ahead is an actively maintained roguelike set in a post-apocalyptic world, forked from the original. (ncurses only)"
arch=('i686' 'x86_64')
url="http://www.cataclysmdda.com/"
@@ -26,13 +26,17 @@ prepare() {
#See https://github.com/CleverRaven/Cataclysm-DDA/issues/11805 for details.
cd "$srcdir/Cataclysm-DDA-${pkgver}"
patch -Np1 -i $srcdir/clang36.patch
+
+ #Ncurses update yay
+ sed -e s/ncursesw5-config/ncursesw6-config/ Makefile > Makefile.new
+ mv Makefile.new Makefile
}
build() {
#Due to build problems with gcc, we'll be using clang for a while
cd "$srcdir/Cataclysm-DDA-${pkgver}"
- make USE_HOME_DIR=1 CLANG=1 RELEASE=1
+ make USE_HOME_DIR=1 CLANG=1 RELEASE=1 #LOCALIZE=1 #Uncomment for localizations
}
package() {