summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorShayne Hartford2024-04-20 03:33:31 -0400
committerShayne Hartford2024-04-20 03:33:31 -0400
commit015666e47876d427463add6fcc196719e4160f90 (patch)
treeb5820eef46d182c68bfaac8b8a010d22b7792be7
parent5badf3324cf087f5fd47675a24f4fbc7ffbd57ab (diff)
downloadaur-sfp-ui-bin.tar.gz
Fix pacman #19
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD9
2 files changed, 6 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 57967efeb9f2..d7ad189ec26f 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,14 @@
pkgbase = sfp-ui-bin
pkgdesc = This utility is designed to allow you to apply skins to the modern Steam client
pkgver = 0.0.54
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/PhantomGamers/sfp
arch = x86_64
license = MIT
depends = ttf-ms-fonts
depends = dotnet-runtime-7.0
+ options = !strip
+ options = !debug
source = https://github.com/PhantomGamers/sfp/releases/download/0.0.54/SFP_UI-linux-x64-net7.tar.gz
sha512sums = 730dbee62bad3015d4462fbeab461d29e9209dc0f07632e5097b8532b6b724bf354cc7cb4316cfb1cedbf958f3c3596f74fd4cd1dbed72ee94d361a21e3a4984
diff --git a/PKGBUILD b/PKGBUILD
index a0a795a3be6f..cad5e7b52c5f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,19 +3,16 @@
_pkgname=sfp
pkgname="${_pkgname}-ui-bin"
pkgver=0.0.54
-pkgrel=1
+pkgrel=2
pkgdesc="This utility is designed to allow you to apply skins to the modern Steam client"
arch=("x86_64")
url="https://github.com/PhantomGamers/${_pkgname}"
-license=('MIT')
+license=("MIT")
+options=("!strip" "!debug") # https://gitlab.archlinux.org/archlinux/packaging/packages/pacman/-/issues/19
depends=("ttf-ms-fonts" "dotnet-runtime-7.0")
source=("${url}/releases/download/${pkgver}/SFP_UI-linux-x64-net7.tar.gz")
sha512sums=("730dbee62bad3015d4462fbeab461d29e9209dc0f07632e5097b8532b6b724bf354cc7cb4316cfb1cedbf958f3c3596f74fd4cd1dbed72ee94d361a21e3a4984")
-prepare() {
- tar -zxvf SFP_UI-linux-x64-net7.tar.gz
-}
-
package() {
install -Dm755 "${srcdir}/SFP_UI" "${pkgdir}/usr/bin/SFP_UI"
}