summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Bezies2020-05-23 13:02:48 +0200
committerFrederic Bezies2020-05-23 13:02:48 +0200
commit22b226be9ab0b9b5c969b3fde7ca0a8e444434bb (patch)
tree2b2557885c5b218bb9133017a4870d0cb2a931ba
parent7aa71ecd0d4e35a55ea2a8a2c577a51665d86a90 (diff)
downloadaur-22b226be9ab0b9b5c969b3fde7ca0a8e444434bb.tar.gz
May 23rd, 2020 update
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD7
2 files changed, 7 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 83a80ef0783a..c3987aeaca26 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = angband-git
pkgdesc = A roguelike dungeon-exploration game based on Tolkien's books
- pkgver = 4.2.0.r308.g14821d4d0
+ pkgver = 4.2.0.r334.g4aa617b1b
pkgrel = 1
url = http://rephial.org/
arch = i686
@@ -10,6 +10,7 @@ pkgbase = angband-git
makedepends = git
makedepends = autogen
makedepends = python-docutils
+ makedepends = clang
depends = sdl_image
depends = sdl_ttf
depends = sdl_mixer
diff --git a/PKGBUILD b/PKGBUILD
index bab0b98cca97..93f96a6c7476 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,14 +2,14 @@
# Contributor: andmars <andreas.marschall @ unitybox.de>
# Contributor: SaThaRiel <sathariel74[at] gmail[dot]com>
pkgname=angband-git
-pkgver=4.2.0.r308.g14821d4d0
+pkgver=4.2.0.r334.g4aa617b1b
pkgrel=1
pkgdesc="A roguelike dungeon-exploration game based on Tolkien's books"
arch=('i686' 'x86_64')
url="http://rephial.org/"
license=('GPL2' 'custom')
depends=('sdl_image' 'sdl_ttf' 'sdl_mixer')
-makedepends=('git' 'autogen' 'python-docutils')
+makedepends=('git' 'autogen' 'python-docutils' 'clang')
conflicts=('angband' 'angband-svn')
source=("$pkgname"::'git+https://github.com/angband/angband.git')
md5sums=('SKIP')
@@ -28,6 +28,9 @@ prepare() {
}
build() {
+ # until gcc 10.x bugs are fixed, let's use CLANG instead
+ export CC='clang --target=x86_64-unknown-linux-gnu'
+ export CXX='clang++ --target=x86_64-unknown-linux-gnu'
cd "$srcdir/$pkgname"
./configure \
--prefix=/usr \