diff options
author | Willy Sudiarto Raharjo <willysr@slackware-id.org> | 2013-11-06 06:14:32 +0700 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-11-05 20:03:25 -0600 |
commit | 9bbba9e5272d3e90a489140a9a4db4a572387069 (patch) | |
tree | 0b3ff30fcc557333d09cc0e034ece321f2a6c5ec /academic/stellarium/stellarium.SlackBuild | |
parent | 9e64763c4c24f3b3f7c3c94427d481ccc2becf4f (diff) | |
download | slackbuilds-9bbba9e5272d3e90a489140a9a4db4a572387069.tar.gz |
academic/stellarium: Updated for version 0.12.4.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackware-id.org>
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'academic/stellarium/stellarium.SlackBuild')
-rw-r--r-- | academic/stellarium/stellarium.SlackBuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/academic/stellarium/stellarium.SlackBuild b/academic/stellarium/stellarium.SlackBuild index fabfbd32af..1558f79201 100644 --- a/academic/stellarium/stellarium.SlackBuild +++ b/academic/stellarium/stellarium.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=stellarium -VERSION=${VERSION:-0.11.0} +VERSION=${VERSION:-0.12.4} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -63,7 +63,11 @@ rm -rf $PRGNAM-$VERSION tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . -chmod -R a-s,u+w,go+r-w . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; mkdir build && cd build cmake -DCMAKE_INSTALL_PREFIX=/usr \ |