diff options
author | Shayne Hartford | 2024-04-20 03:33:31 -0400 |
---|---|---|
committer | Shayne Hartford | 2024-04-20 03:33:31 -0400 |
commit | 015666e47876d427463add6fcc196719e4160f90 (patch) | |
tree | b5820eef46d182c68bfaac8b8a010d22b7792be7 /PKGBUILD | |
parent | 5badf3324cf087f5fd47675a24f4fbc7ffbd57ab (diff) | |
download | aur-015666e47876d427463add6fcc196719e4160f90.tar.gz |
Fix pacman #19
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -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" } |