diff options
| author | kj_sh604 | 2024-06-29 20:10:50 -0400 |
|---|---|---|
| committer | kj_sh604 | 2024-06-29 20:10:50 -0400 |
| commit | 529e7dff5cac926863d7b90e676ddbcd2584ce5f (patch) | |
| tree | 25af784a7038fb4605d3cfb8c6510315b980418a | |
| parent | 9b2e3b21732942347c67f96f879c5fe12bf4d496 (diff) | |
upgpkg: 1.41-2
refactor: fix directory permission issues
| -rw-r--r-- | .SRCINFO | 3 | ||||
| -rw-r--r-- | .gitignore | 4 | ||||
| -rw-r--r-- | PKGBUILD | 9 |
3 files changed, 10 insertions, 6 deletions
@@ -1,7 +1,7 @@ pkgbase = lanxchange pkgdesc = Configuration-free, cross-platform file transfers for your local network pkgver = 1.41 - pkgrel = 1 + pkgrel = 2 url = https://lanxchange.com install = lanxchange.install arch = any @@ -13,4 +13,3 @@ pkgbase = lanxchange sha256sums = 18fb4e05a8cf858baf1ff3b079be63eb6228424eb5de596f3cc604dbb8fa2102 pkgname = lanxchange - diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7e53132 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +pkg/ +src/ +*.zip +*.tar* @@ -1,8 +1,9 @@ -# Maintainer: Dimitris Kiziridis <ragouel at outlook dot com> +# Maintainer: kj_sh604 <406hs_jk@proton.me> +# Contributor: Dimitris Kiziridis <ragouel at outlook dot com> pkgname=lanxchange pkgver=1.41 -pkgrel=1 +pkgrel=2 pkgdesc="Configuration-free, cross-platform file transfers for your local network" arch=('any') url='https://lanxchange.com' @@ -29,5 +30,5 @@ package() { --icon "${pkgname}" install -Dm644 "${pkgname}.desktop" -t "${pkgdir}/usr/share/applications" install -Dm644 img/logo.png "${pkgdir}/usr/share/pixmaps/${pkgname}.png" - chmod 007 "${pkgdir}/opt/lanxchange/" -}
\ No newline at end of file + chmod 777 "${pkgdir}/opt/lanxchange/" +} |
