summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorXZS2015-10-11 19:09:37 +0200
committerXZS2015-10-11 19:12:06 +0200
commit6d6544047cd4b46415ac035649bbb620738773d6 (patch)
tree1ecd236205fb82078c0e9b577c058b1c96e67bba /PKGBUILD
parent7456cc56be4f542450c2f1744bad5e248df6d9a9 (diff)
downloadaur-6d6544047cd4b46415ac035649bbb620738773d6.tar.gz
use shipped library
Utilizing the shared libvorbis causes a segmentation fault, so the one shipped with the game must be used. The other two still seem to be compatible and can be continued to be omitted.
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 95d1f1869de0..68a402911913 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=littleinferno
pkgver=20130509
-pkgrel=1
+pkgrel=2
pkgdesc="A game about burning things"
url="http://tomorrowcorporation.com/littleinferno"
license=('custom:proprietary')
@@ -53,7 +53,7 @@ package()
install -d "${pkgdir}/opt/${pkgname}/"
tar --lzma -xf "./instarchive_all" -C "${pkgdir}/opt/${pkgname}/"
# We don't extract the bundled libraries as we use the shared ones
- tar --lzma -xf "./instarchive_linux_all" -C "${pkgdir}/opt/${pkgname}/" LittleInferno.bin.x86
+ tar --lzma -xf "./instarchive_linux_all" -C "${pkgdir}/opt/${pkgname}/" LittleInferno.bin.x86 lib/libvorbis.so.0
find "${pkgdir}/opt/${pkgname}/" -type f -exec chown root:root "{}" \;
find "${pkgdir}/opt/${pkgname}/" -type f -exec chmod 0644 "{}" \;