summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorhalfhorn2020-02-16 15:56:25 -0500
committerhalfhorn2020-02-16 15:56:25 -0500
commit3548ce7152199e8aef1cd0ecaa7e2506a474e3e2 (patch)
tree5ef7225ea46c58d54a249e589e9c962b42376358
parent2d394a5733978eed80dd000dbfb5df3356357c76 (diff)
downloadaur-galaxia.tar.gz
fix return value in install
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD2
-rw-r--r--galaxia.install1
3 files changed, 3 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 058a0bceba0b..6e641d254a1d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = galaxia
pkgdesc = code written in C++ to generate a synthetic survey of the Milky Way
pkgver = 0.7.2
- pkgrel = 2
+ pkgrel = 3
url = http://galaxia.sourceforge.net/
install = galaxia.install
arch = any
diff --git a/PKGBUILD b/PKGBUILD
index 29800125a82e..f4ae30771b97 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Mark Wells (halfhorn) com dot gmail at mwellsa
pkgname=galaxia
pkgver=0.7.2
-pkgrel=2
+pkgrel=3
epoch=
pkgdesc="code written in C++ to generate a synthetic survey of the Milky Way"
arch=('any')
diff --git a/galaxia.install b/galaxia.install
index fe4f8f890d5b..e353789b6c72 100644
--- a/galaxia.install
+++ b/galaxia.install
@@ -3,4 +3,5 @@ post_install() {
echo 'Y' | galaxia -s warp
printf "generating BHTree files for disc with nowarp\n"
echo 'Y' | galaxia -s nowarp
+ return 0
}