diff options
author | Larry Hajali <larryhaja@gmail.com> | 2020-05-02 17:04:41 -0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-05-03 08:48:38 +0700 |
commit | a4ab2a02798f1bf44a741cd637dca451b2a94019 (patch) | |
tree | a78e3fff897774e9c202485d656626176022518c /libraries/libotf | |
parent | a97381b3158c1efca9a7bf3f9da3fd9abae9a370 (diff) |
libraries/libotf: Updated for version 0.9.16
Signed-off-by: Larry Hajali <larryhaja[at]gmail[dot]com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/libotf')
-rw-r--r-- | libraries/libotf/libotf.SlackBuild | 38 | ||||
-rw-r--r-- | libraries/libotf/libotf.info | 6 |
2 files changed, 31 insertions, 13 deletions
diff --git a/libraries/libotf/libotf.SlackBuild b/libraries/libotf/libotf.SlackBuild index ce9a3cc154fd..ba01dc8340fd 100644 --- a/libraries/libotf/libotf.SlackBuild +++ b/libraries/libotf/libotf.SlackBuild @@ -2,16 +2,34 @@ # Slackware build script for libotf -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> +# Copyright 2010-2020 Larry Hajali <larryhaja[at]gmail[dot]com> +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=libotf -VERSION=${VERSION:-0.9.13} +VERSION=${VERSION:-0.9.16} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -22,8 +40,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" @@ -46,10 +64,10 @@ 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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + \( -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" \ ./configure \ @@ -62,7 +80,7 @@ CFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION diff --git a/libraries/libotf/libotf.info b/libraries/libotf/libotf.info index 494221cb6876..ac064f12e427 100644 --- a/libraries/libotf/libotf.info +++ b/libraries/libotf/libotf.info @@ -1,8 +1,8 @@ PRGNAM="libotf" -VERSION="0.9.13" +VERSION="0.9.16" HOMEPAGE="http://www.m17n.org/libotf/" -DOWNLOAD="http://download.savannah.gnu.org/releases/m17n/libotf-0.9.13.tar.gz" -MD5SUM="99ca3857016e0bb8944776cfa16e6b2d" +DOWNLOAD="https://download.savannah.gnu.org/releases/m17n/libotf-0.9.16.tar.gz" +MD5SUM="9b0b708ba5de53bf83e1cb09c6a6e100" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |