summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuentin Retornaz2017-10-22 04:12:25 +0200
committerQuentin Retornaz2017-10-22 04:12:25 +0200
commit8e01d9f8e977235df2801b02ec3e0cfd2bcbabf9 (patch)
tree7c12760aa738958825732a72e2b00143d609676c
parentcf7ba4cd9cb80e02f7d548ed36984e7440ffdc8e (diff)
downloadaur-8e01d9f8e977235df2801b02ec3e0cfd2bcbabf9.tar.gz
reversed
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD11
2 files changed, 8 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 29d84c3bc438..211433847c07 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Sat Oct 21 22:01:55 UTC 2017
+# Sun Oct 22 02:09:19 UTC 2017
pkgbase = firewatch-gog
pkgdesc = Firewatch is a single-player first-person mystery set in the Wyoming wilderness.
pkgver = 1.06_2.4.0.6
- pkgrel = 2
+ pkgrel = 3
url = http://www.firewatchgame.com/
arch = x86_64
license = custom: commercial
diff --git a/PKGBUILD b/PKGBUILD
index 763aed215bbf..42140baabe60 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=firewatch-gog
_gogver=2.4.0.6
pkgver=1.06_${_gogver}
-pkgrel=2
+pkgrel=3
pkgdesc="Firewatch is a single-player first-person mystery set in the Wyoming wilderness."
arch=('x86_64')
url="http://www.firewatchgame.com/"
@@ -20,12 +20,13 @@ package() {
# Launcher and Data
cp -Ral "${srcdir}/data/noarch/game/"* "${pkgdir}/opt/firewatch"
- mv "${pkgdir}"/opt/firewatch/fw{.x86_64,}
# Install Binaries/Launchers
mkdir -p "${pkgdir}/usr/bin"
- ln -s "/opt/firewatch/fw" "${pkgdir}/usr/bin/firewatch"
-
+ cat > "${pkgdir}/usr/bin/firewatch" <<END
+#!/bin/bash
+/opt/firewatch/fw.x86_64
+END
# Desktop Integration
mkdir -p "${pkgdir}/usr/share/pixmaps/"
ln -s "/opt/firewatch/fw_Data/Resources/UnityPlayer.png" \
@@ -35,5 +36,5 @@ package() {
# Permissions
find "${pkgdir}/opt/firewatch" -type d -exec chmod 755 {} \;
find "${pkgdir}/opt/firewatch" -type f -exec chmod 644 {} \;
- chmod 755 "${pkgdir}/opt/firewatch/fw"
+ chmod 755 "${pkgdir}/opt/firewatch/fw.x86_64"
}