summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorJose Riha2022-04-19 09:38:28 +0200
committerJose Riha2022-04-19 09:38:28 +0200
commit658bc60f55115ff66dd45ecaf83506f2e3b517d7 (patch)
treeed655ed1d4c92798f4cd45129a85e6c1db00b88e /PKGBUILD
parent4b87ad7cb933cf518c0cfb9712bbf0503d91627e (diff)
downloadaur-658bc60f55115ff66dd45ecaf83506f2e3b517d7.tar.gz
Fix build and shorten description
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD11
1 files changed, 7 insertions, 4 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 770f111b001f..47af0262cef2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,12 +3,11 @@
# Contributor: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Linus Sjögren <thelinx@unreliablepollution.net>
# Contributor: Eric Forgeot < http://anamnese.online.fr >
-# Contributor: dreeze, bageljr, pio
+# Contributor: dreeze, bageljr, pio, caffineetim
pkgname=love10
pkgver=0.10.2
-pkgrel=3
-pkgdesc="An open-source 2D game engine which uses the versatile Lua scripting language to create dynamic g
-aming experiences"
+pkgrel=4
+pkgdesc="2D game engine which uses the versatile Lua scripting language"
arch=(i686 x86_64)
url="http://love2d.org/"
license=('zlib')
@@ -26,6 +25,10 @@ prepare() {
# Skip installing desktop files, icons, etc
sed -i 4q Makefile.am
+
+ # Fix for the latest version of lua
+ find "$srcdir/love-$pkgver/src/libraries/luasocket/libluasocket/" \
+ -type f -print0 | xargs -0 sed -i "s/luaL_reg/luaL_Reg/g"
}
build() {