diff options
author | B. Watson <yalhcru@gmail.com> | 2018-09-22 20:11:36 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-09-29 07:47:46 +0700 |
commit | e0689c375c93541128c689fc5385886f4e44b396 (patch) | |
tree | d6ba0e84bf898a97324644b29309f4088c1691a2 /development/rmac/rmac.SlackBuild | |
parent | e5245acadcf3e5fcb8d3adb68201a0d83b7fe71e (diff) |
development/rmac: Updated for version 1.13.5_20180603.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'development/rmac/rmac.SlackBuild')
-rw-r--r-- | development/rmac/rmac.SlackBuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/development/rmac/rmac.SlackBuild b/development/rmac/rmac.SlackBuild index 883d83b114cde..a304fad8b7b46 100644 --- a/development/rmac/rmac.SlackBuild +++ b/development/rmac/rmac.SlackBuild @@ -8,8 +8,11 @@ # Upstream doesn't do source release tarballs, see git2targz.sh. +# 20180922 bkw: +# - updated for v1.13.5_20180603, had to add -j1 to make command. + PRGNAM=rmac -VERSION=${VERSION:-1.8.6_20170829} +VERSION=${VERSION:-1.13.5_20180603} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -49,14 +52,11 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.xz cd $PRGNAM-$VERSION chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -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 {} \; +find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ + \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ sed -i "s,-O2,$SLKCFLAGS," makefile -make +make -j1 # Manual install. mkdir -p $PKG/usr/bin $PKG/usr/share/$PRGNAM |