summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorNemin322020-09-24 16:55:21 +0200
committerNemin322020-09-24 16:55:21 +0200
commite884e7a6dcc3204043b1613015140174dc9cb6ba (patch)
tree43f8ff3be147f97492f15b7f3f8247247eb249da
parent74403dc812cc927411ed5daa7ea1102ba5338558 (diff)
downloadaur-e884e7a6dcc3204043b1613015140174dc9cb6ba.tar.gz
Updated the package to also install a .desktop file
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD8
-rw-r--r--relive-git.install4
3 files changed, 7 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 5939475ef5bf..47df8250404a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
pkgbase = relive-git
pkgdesc = An open-source Abe's Oddysee / Abe's Exoddus engine
- pkgver = r3159.98bcf2a9
+ pkgver = r3164.f70e390b
pkgrel = 1
- url = https://github.com/AliveTeam/alive_reversing
+ url = https://aliveteam.github.io
install = relive-git.install
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 335fcea744b9..edb980f7c6e2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,7 +8,7 @@
# Maintainer: Nemin <pergerlori@gmail.com>
pkgname=relive-git
-pkgver=r3159.98bcf2a9
+pkgver=r3164.f70e390b
pkgrel=1
pkgdesc="An open-source Abe's Oddysee / Abe's Exoddus engine"
arch=('i686' 'x86_64')
@@ -30,12 +30,10 @@ pkgver() {
build() {
cd "$srcdir/${pkgname%-git}"
git submodule update --init --recursive
- cmake -B build -S .
+ cmake -DCMAKE_INSTALL_PREFIX="$pkgdir/usr/" -B build -S .
}
package() {
cd "$srcdir/${pkgname%-git}/build"
- make
- mkdir -p "$pkgdir/usr/bin"
- cp Source/AliveExe/AliveExeAE "$pkgdir/usr/bin/${pkgname%-git}"
+ make install
}
diff --git a/relive-git.install b/relive-git.install
index fcd09010fec9..0f1539ab5fab 100644
--- a/relive-git.install
+++ b/relive-git.install
@@ -1,4 +1,4 @@
post_install() {
- echo "To use the engine, navigate to the folder where Abe's Exoddus is installed and call 'relive'."
- echo "If you're using the Steam version, it's ~/.steam/steam/steamapps/common/Oddworld Abe's Exoddus by default."
+ echo "To use the engine, navigate to the folder where Abe's Exoddus is installed and call 'AliveExeAE'."
+ echo "If you're using the Steam version, it's '~/.local/share/Steam/steamapps/common/Oddworld Abes Exoddus' by default."
}