diff options
author | Matthias Mailänder | 2023-04-14 19:19:16 +0200 |
---|---|---|
committer | Matthias Mailänder | 2023-04-14 19:19:16 +0200 |
commit | b3e2a1b5335dc3afd31ee95c916df8e8e0300637 (patch) | |
tree | 129fce62bee6a8943b4639005a2107dcd462791f /PKGBUILD | |
parent | 72546d574960b8fc4fdc7c287cbb8b9a189d1289 (diff) | |
download | aur-b3e2a1b5335dc3afd31ee95c916df8e8e0300637.tar.gz |
Alternative packages were called return-to-the-roots
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -5,7 +5,7 @@ pkgname=s25rttr pkgver=0.9.5 pkgrel=2 -pkgdesc="Return to the Roots is an unofficial extension of (Die Siedler II) ® by BlueByte Software GmbH. Put the files from the original game in the folder (/usr/share/s25rttr/S2/)" +pkgdesc="Return to the Roots is a reimplementation of Settlers II (Die Siedler II) by BlueByte Software GmbH. Put the files from the original game in the folder (/usr/share/s25rttr/S2/)" arch=('i686' 'x86_64') url="https://www.siedler25.org/" license=('GPL3') @@ -14,6 +14,8 @@ makedepends=('cmake' 'boost') install="s25rttr.install" source=("$pkgname-$pkgver.tar.gz::https://github.com/Return-To-The-Roots/s25client/releases/download/v$pkgver/s25client_src_v$pkgver.tar.gz") sha256sums=('c6a9ef5b90943b5f2e81543f1e3290ff773663a45ebbbcc5a786bb5f5495fbec') +provides=("return-to-the-roots=${pkgver}") +conflicts=("return-to-the-roots") build() { cmake -B build -S "s25client_v$pkgver" \ @@ -28,11 +30,11 @@ build() { package() { pushd build - make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" install popd pushd "s25client_v$pkgver" - install -D -m 0644 tools/release/debian/s25rttr.desktop "${pkgdir}/usr/share/applications/s25rttr.desktop" - install -D -m 0644 tools/release/debian/s25rttr.png "${pkgdir}/usr/share/icons/hicolor/64x64/apps/s25rttr.png" + install -D -m 0644 tools/release/debian/s25rttr.desktop "${pkgdir}/usr/share/applications/s25rttr.desktop" + install -D -m 0644 tools/release/debian/s25rttr.png "${pkgdir}/usr/share/icons/hicolor/64x64/apps/s25rttr.png" popd } |