summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAinola2016-05-07 19:35:40 -0600
committerAinola2016-05-07 19:35:40 -0600
commitcc38ab3d2cc8c8e4e0c8b9d3469f36a33e7fc2cf (patch)
tree4a9f3ab34ba1203c7687f2c489dde31071f36540
parent1e0033dd42952a25e07015ca3da9645e0f826667 (diff)
downloadaur-cc38ab3d2cc8c8e4e0c8b9d3469f36a33e7fc2cf.tar.gz
update sum, add note about removing -lm on next release
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD5
2 files changed, 6 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0e8ddd22da6d..2385d1afa6fd 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,5 +1,5 @@
# Generated by mksrcinfo v8
-# Sat May 7 15:50:53 UTC 2016
+# Sun May 8 01:34:37 UTC 2016
pkgbase = ags
pkgdesc = A development tool that is primarily used to create graphical adventure games
pkgver = 3.3.5.5
@@ -18,7 +18,7 @@ pkgbase = ags
optdepends = wine: for installing and configuring the game
conflicts = ags-git
source = https://github.com/adventuregamestudio/ags/archive/v.3.3.5.5.tar.gz
- sha256sums = 604395a6b736461a38ad3e93aef9cd60769075ccbc9dc03b4e42cbb766e74375
+ sha256sums = f2b31a3d5152fd50d6a9fae1e019dcf3d0823f5968d5fbe344478c524afa7d9f
pkgname = ags
diff --git a/PKGBUILD b/PKGBUILD
index e39234f732bb..a0e3b7225ee8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -15,11 +15,14 @@ optdepends=('wine: for installing and configuring the game')
conflicts=('ags-git')
install=ags.install
source=("https://github.com/adventuregamestudio/ags/archive/v.${pkgver}.tar.gz")
-sha256sums=('604395a6b736461a38ad3e93aef9cd60769075ccbc9dc03b4e42cbb766e74375')
+sha256sums=('f2b31a3d5152fd50d6a9fae1e019dcf3d0823f5968d5fbe344478c524afa7d9f')
prepare() {
cd "$srcdir/ags-v.${pkgver}"
sed -i 's/-Wfatal-errors\ //' Engine/Makefile-defs.linux
+
+ # Can be removed onnext release
+ # (see https://github.com/adventuregamestudio/ags/issues/327)
sed -i 's/-ldumb/-ldumb -lm/' Engine/Makefile-defs.linux
}