diff options
author | Edinaldo P. Silva <edps.mundognu@gmail.com> | 2018-06-19 21:15:24 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-06-23 08:44:00 +0700 |
commit | 9bfde6fac1367684f8ee7fe5b27f69da412b5846 (patch) | |
tree | 362954e7afcd11300530c80850cbaa859189ef24 /desktop/moka-icon-theme/moka-icon-theme.SlackBuild | |
parent | c24afda337fd028b1cb9f3b2da7acfec839c9bb3 (diff) | |
download | slackbuilds-9bfde6fac1367684f8ee7fe5b27f69da412b5846.tar.gz |
desktop/moka-icon-theme: Updated for version 5.4.0.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'desktop/moka-icon-theme/moka-icon-theme.SlackBuild')
-rw-r--r-- | desktop/moka-icon-theme/moka-icon-theme.SlackBuild | 32 |
1 files changed, 11 insertions, 21 deletions
diff --git a/desktop/moka-icon-theme/moka-icon-theme.SlackBuild b/desktop/moka-icon-theme/moka-icon-theme.SlackBuild index 97b0bdc2ba..27e1033001 100644 --- a/desktop/moka-icon-theme/moka-icon-theme.SlackBuild +++ b/desktop/moka-icon-theme/moka-icon-theme.SlackBuild @@ -2,7 +2,7 @@ # # Slackware build script for moka-icon-theme. # -# Copyright 2015-217 Edinaldo P. Silva, Rio de Janeiro, Brazil. +# Copyright 2015-218 Edinaldo P. Silva, Rio de Janeiro, Brazil. # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM="moka-icon-theme" -VERSION=${VERSION:-20171021} +VERSION=${VERSION:-5.4.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -34,36 +34,26 @@ PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} CWD=$(pwd) -SRCVER=${SRCVER:-d63bd966332fb6de5034d8bbc00ba0e14825ed07} - set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$SRCVER.tar.gz -mv $PRGNAM-$SRCVER $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 {} \; -CFLAGS="$SLKCFLAGS" -CXXFLAGS="$SLKCFLAGS" -./autogen.sh \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --enable-silent-rules \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG +meson --prefix $PKG/usr build +ninja -C build install mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp AUTHORS COPYING INSTALL LICENSE* README.md $PKG/usr/doc/$PRGNAM-$VERSION +cp AUTHORS COPYING LICENSE* README.md $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |