summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorWren Baxter2022-04-19 00:54:49 -0400
committerWren Baxter2022-04-19 00:54:49 -0400
commit0de949f2df232338341a3cbddfed0fb96f4d870b (patch)
tree7385e4a76d1bea0e4b2f41e383a51209135e365a
parentf3b086b261f1930774d22a333e341309ef592763 (diff)
downloadaur-0de949f2df232338341a3cbddfed0fb96f4d870b.tar.gz
Actually fixed file permissions
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
2 files changed, 4 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b7ae54afd6b3..931a333fd524 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = h18-star-db-astap
pkgdesc = Database of 208 million stars up to BP-magnitude 18, for use with ASTAP
pkgver = 2021.1.3
- pkgrel = 1
+ pkgrel = 2
url = https://www.hnsky.org/astap.htm
arch = any
license = LGPL3
diff --git a/PKGBUILD b/PKGBUILD
index def4bf296bd9..833899829f5d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=h18-star-db-astap
pkgver=2021.1.3
-pkgrel=1
+pkgrel=2
pkgdesc="Database of 208 million stars up to BP-magnitude 18, for use with ASTAP"
arch=('any')
url="https://www.hnsky.org/astap.htm"
@@ -14,6 +14,7 @@ depends=('astap')
# the deb is automatically unpacked in the automatic prepare() step, but the files we want are doubly archived
package() {
tar xfv data.tar.xz -C "${pkgdir}"
- chmod 755 -R "${pkgdir}"
+ chmod 755 -R "${pkgdir}"
+ chmod 644 "${pkgdir}"/opt/astap/*
}