commit 67d09cf84683a76f259af4e51488023a551e578a Author: furistar Date: Fri Feb 6 12:20:31 2026 +1000 init repo diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000000..b87c5e4be4423 --- /dev/null +++ b/LICENSE @@ -0,0 +1,12 @@ +Copyright Arch Linux Contributors + +Permission to use, copy, modify, and/or distribute this software for +any purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE +FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY +DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN +AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000000000..2735049c3fa15 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,19 @@ +# Maintainer: furistar + +pkgname=stalker-gamma-cli-bin +pkgver=1.5.1 +pkgrel=1 +pkgdesc="a cli to install Stalker Anomaly and the GAMMA mod pack (appimage)" +arch=('x86_64' 'aarch64') +url="https://github.com/FaithBeam/stalker-gamma-cli" +license=('GPL-3.0-or-later') +options=(!strip) +depends=('unzip' 'fuse2') +source_x86_64=("https://github.com/FaithBeam/stalker-gamma-cli/releases/download/${pkgver}/stalker-gamma+linux.x64.AppImage") +source_aarch64=("https://github.com/FaithBeam/stalker-gamma-cli/releases/download/${pkgver}/stalker-gamma+linux.arm64.AppImage") +sha256sums_x86_64=('50d4ce008b619e6cc37597e0b33e1e5e0fcd51e03d3b18c0ca8e0831aba001e3') +sha256sums_aarch64=('60d56f44fdf031d741f0c09f6b59c72e16cde9d2a94a685cc01b03bda15c0441') + +package() { + install -Dm755 stalker-gamma+linux.*.AppImage "$pkgdir/usr/bin/stalker-gamma" +}