summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkj_sh6042024-06-29 20:10:50 -0400
committerkj_sh6042024-06-29 20:10:50 -0400
commit529e7dff5cac926863d7b90e676ddbcd2584ce5f (patch)
tree25af784a7038fb4605d3cfb8c6510315b980418a
parent9b2e3b21732942347c67f96f879c5fe12bf4d496 (diff)
upgpkg: 1.41-2
refactor: fix directory permission issues
-rw-r--r--.SRCINFO3
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD9
3 files changed, 10 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 44e726d..c8a087e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -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*
diff --git a/PKGBUILD b/PKGBUILD
index efd9705..67c26d7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -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/"
+}