summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorWren Baxter2022-04-19 00:52:36 -0400
committerWren Baxter2022-04-19 00:52:36 -0400
commit14ffe0e450a3e0c3a9554271166238fc93063492 (patch)
tree42779cf093faac32fabad633cba056bdad60fbc3
parentd197bd348dd991541ca3ded184740bb9f15bc689 (diff)
downloadaur-14ffe0e450a3e0c3a9554271166238fc93063492.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 1e6dfebdb997..5edf166c0590 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = v17-photometry-color-db-astap
pkgdesc = Color database of 105 million stars up to Johnson V-magnitude 17, for use with ASTAP
pkgver = 2020.12.20
- pkgrel = 1
+ pkgrel = 2
url = https://www.hnsky.org/astap.htm
arch = any
license = LGPL3
diff --git a/PKGBUILD b/PKGBUILD
index 970f9267cd0c..5d7436e1ed5f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=v17-photometry-color-db-astap
pkgver=2020.12.20
-pkgrel=1
+pkgrel=2
pkgdesc="Color database of 105 million stars up to Johnson V-magnitude 17, for use with ASTAP"
arch=('any')
url="https://www.hnsky.org/astap.htm"
@@ -13,7 +13,8 @@ depends=('astap')
# the deb is automatically unpacked in the automatic prepare() step, but the files we want are doubly archived
package() {
- tar xpfv data.tar.xz -C "${pkgdir}"
+ tar xfv data.tar.xz -C "${pkgdir}"
chmod 755 -R "${pkgdir}"
+ chmod 644 "${pkgdir}"/opt/astap/*
}