summaryrefslogtreecommitdiffstats
path: root/libraries/libsixel/libsixel.SlackBuild
diff options
context:
space:
mode:
author orbea2019-12-19 17:07:29 +0100
committer Willy Sudiarto Raharjo2019-12-21 05:02:49 +0100
commitdc0cd14c916647d4f0614314dbbdfd5e8c25d2cf (patch)
treea68a3069f063c366f0331ee69089964ee9361669 /libraries/libsixel/libsixel.SlackBuild
parent0854e74a47d4de145698b38e66618c911050de0e (diff)
downloadslackbuilds-dc0cd14c916647d4f0614314dbbdfd5e8c25d2cf.tar.gz
libraries/libsixel: Updated for version 1.8.4.
Signed-off-by: orbea <orbea@riseup.net>
Diffstat (limited to 'libraries/libsixel/libsixel.SlackBuild')
-rw-r--r--libraries/libsixel/libsixel.SlackBuild9
1 files changed, 5 insertions, 4 deletions
diff --git a/libraries/libsixel/libsixel.SlackBuild b/libraries/libsixel/libsixel.SlackBuild
index e6adbad20e..75d5cc18ed 100644
--- a/libraries/libsixel/libsixel.SlackBuild
+++ b/libraries/libsixel/libsixel.SlackBuild
@@ -2,7 +2,7 @@
# Slackware build script for libsixel
-# Copyright 2018 Hunter Sezen California, USA
+# Copyright 2018-2019 Hunter Sezen California, USA
# 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=libsixel
-VERSION=${VERSION:-1.8.2}
+VERSION=${VERSION:-1.8.4}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -77,14 +77,15 @@ CXXFLAGS="$SLKCFLAGS" \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--mandir=/usr/man \
+ --includedir=/usr/include/sixel \
--disable-static \
--build=$ARCH-slackware-linux
make
make install DESTDIR=$PKG
-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
+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
find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done