diff options
Diffstat (limited to 'system/lz4')
-rw-r--r-- | system/lz4/README | 9 | ||||
-rw-r--r-- | system/lz4/lz4.SlackBuild | 96 | ||||
-rw-r--r-- | system/lz4/lz4.info | 10 | ||||
-rw-r--r-- | system/lz4/slack-desc | 19 |
4 files changed, 0 insertions, 134 deletions
diff --git a/system/lz4/README b/system/lz4/README deleted file mode 100644 index f97be58647..0000000000 --- a/system/lz4/README +++ /dev/null @@ -1,9 +0,0 @@ -lz4 (compression algorithm) - -LZ4 is lossless compression algorithm, providing compression speed at -400 MB/s per core (0.16 Bytes/cycle). It also features an extremely fast -decoder, with speed in multiple GB/s per core (0.71 Bytes/cycle). A high -compression derivative, called LZ4_HC, is also provided. It trades CPU -time for compression ratio. - -This build includes liblz4 and the command-line lz4 tools. diff --git a/system/lz4/lz4.SlackBuild b/system/lz4/lz4.SlackBuild deleted file mode 100644 index 17feed23bd..0000000000 --- a/system/lz4/lz4.SlackBuild +++ /dev/null @@ -1,96 +0,0 @@ -#!/bin/sh - -# Slackware build script for lz4 - -# Written by B. Watson (yalhcru@gmail.com) - -# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. - -# 20201208 bkw: update for 1.9.3 -# 20191127 bkw: update for 1.9.2 -# 20180911 bkw: update for 1.8.3 -# 20180611 bkw: update for 1.8.2. don't try to use the updated script -# to build older versions, the man pages will end up -# in the wrong place due to upstream changing how they -# interpret MANDIR -# 20180114 bkw: update for 1.8.1.2. had to add -j1 to the make command. -# 20170819 bkw: update for 1.8.0 -# 20170302 bkw: use github long-format URL -# 20170122 bkw: update for 1.7.5 - -PRGNAM=lz4 -VERSION=${VERSION:-1.9.3} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz --exclude visual -cd $PRGNAM-$VERSION -chown -R root:root . -find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ - \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ - -# -j1 was necessary in 1.8.1.2. Not sure it's still needed in 1.8.2, but -# lz4 is small & builds pretty fast even with -j1, so I'll leave it for now. -make -j1 \ - CFLAGS="$SLKCFLAGS" \ - PREFIX=/usr \ - LIBDIR=/usr/lib$LIBDIRSUFFIX \ - MANDIR=/usr/man \ - DESTDIR=$PKG \ - BUILD_STATIC=no \ - default install - -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 - -DOCDIR=$PKG/usr/doc/$PRGNAM-$VERSION -mkdir -p $DOCDIR -cp -a NEWS README* doc/* examples $DOCDIR - -# the library is BSD licensed, but the programs are GPL. -cat programs/COPYING > $DOCDIR/LICENSE.programs.txt -cat lib/LICENSE > $DOCDIR/LICENSE.lib.txt - -cat $CWD/$PRGNAM.SlackBuild > $DOCDIR/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/system/lz4/lz4.info b/system/lz4/lz4.info deleted file mode 100644 index b6bb9ea084..0000000000 --- a/system/lz4/lz4.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="lz4" -VERSION="1.9.3" -HOMEPAGE="https://lz4.github.io/lz4/" -DOWNLOAD="https://github.com/lz4/lz4/archive/v1.9.3/lz4-1.9.3.tar.gz" -MD5SUM="3a1ab1684e14fc1afc66228ce61b2db3" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="B. Watson" -EMAIL="yalhcru@gmail.com" diff --git a/system/lz4/slack-desc b/system/lz4/slack-desc deleted file mode 100644 index b9c624ad7d..0000000000 --- a/system/lz4/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. -# Line up the first '|' above the ':' following the base package name, and -# the '|' on the right side marks the last column you can put a character in. -# You must make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -lz4: lz4 (compression algorithm) -lz4: -lz4: LZ4 is lossless compression algorithm, providing compression -lz4: speed at 400 MB/s per core (0.16 Bytes/cycle). It also features -lz4: an extremely fast decoder, with speed in multiple GB/s per core -lz4: (0.71 Bytes/cycle). A high compression derivative, called LZ4_HC, -lz4: is also provided. It trades CPU time for compression ratio. -lz4: -lz4: -lz4: -lz4: |