diff options
author | N3k0-san | 2023-03-28 12:08:34 -0500 |
---|---|---|
committer | N3k0-san | 2023-03-28 12:08:34 -0500 |
commit | 487a0b7b12be7c71b8a9ae3d4aa5314a0f6b2c3c (patch) | |
tree | 241c5fce163f4ec233f39c0dbc9129ef33b778ed | |
parent | e9750817f330f82100d3daf654c7bd799237debd (diff) | |
download | aur-487a0b7b12be7c71b8a9ae3d4aa5314a0f6b2c3c.tar.gz |
Edited PKGBUILD package()
-rw-r--r-- | PKGBUILD | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -3,7 +3,7 @@ pkgname=striked-bin pkgver=0.0.3 pkgdesc='A community communication platform for game development studios to create, sell, and distribute video games' -pkgrel=0 +pkgrel=1 arch=(x86_64) url="https://${pkgname/-bin/}.gg" license=('custom' 'MIT' 'Apache') @@ -54,9 +54,10 @@ sha256sums=( package() { # Main files - install -dm777 "${pkgdir}/opt/Striked Launcher" - ## Doesn't seem to respect permissions after installation? - chmod -R 777 "${pkgdir}/opt/Striked Launcher" + install -dm755 "${pkgdir}/opt/Striked Launcher" + ## Doesn't seem to respect unprivileged user permissions after installation? Doing this doesn't seem to make a difference + ## Calling the striked binary directly instead of with the desktop file desn't seem to work correctly + # chmod -R 777 "${pkgdir}/opt/Striked Launcher" install -dm755 "${pkgdir}/usr" mv "${srcdir}/opt/Striked Launcher/"* "${pkgdir}/opt/Striked Launcher" mv "${srcdir}/usr/"* "${pkgdir}/usr" |