diff options
author | B. Watson <yalhcru@gmail.com> | 2018-09-17 14:16:50 -0400 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2018-09-21 23:52:42 +0100 |
commit | 3ec56e85873151eb1c571a783b73206fa2fd692c (patch) | |
tree | b7296169964364db71ad101516077d0de765c3e3 /desktop/xdgmenumaker/xdgmenumaker.SlackBuild | |
parent | af3d874f76c6f32e6518ae0e361b50620a7a58d2 (diff) |
desktop/xdgmenumaker: Updated for version 1.5.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'desktop/xdgmenumaker/xdgmenumaker.SlackBuild')
-rw-r--r-- | desktop/xdgmenumaker/xdgmenumaker.SlackBuild | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/desktop/xdgmenumaker/xdgmenumaker.SlackBuild b/desktop/xdgmenumaker/xdgmenumaker.SlackBuild index 3c7de37d7e876..60e248afebee1 100644 --- a/desktop/xdgmenumaker/xdgmenumaker.SlackBuild +++ b/desktop/xdgmenumaker/xdgmenumaker.SlackBuild @@ -7,6 +7,8 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ # for details. +# 20180917 bkw: updated for v1.5. + # 20170301 bkw: # - Use long-form github URL. @@ -23,7 +25,7 @@ # instead of install.sh so this script can't build the old version. PRGNAM=xdgmenumaker -VERSION=${VERSION:-1.4} +VERSION=${VERSION:-1.5} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -44,11 +46,8 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz 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 {} \+ # install man pages where Slackware wants them: sed -i 's,share/man,man,' Makefile |