diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2016-01-02 01:26:44 -0600 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-17 09:40:16 +0700 |
commit | 4c5e6e61b1a25b8be364de6006c8815d9b400893 (patch) | |
tree | df20db8f49661f5afafb570112f0aa2769560136 | |
parent | febaefaffad8bcf157f04847b9b49641ab5b63f2 (diff) | |
download | slackbuilds-4c5e6e61b1a25b8be364de6006c8815d9b400893.tar.gz |
system/lzip: Removed (included in Slackware 14.2)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rw-r--r-- | system/lzip/README | 6 | ||||
-rw-r--r-- | system/lzip/lzip.SlackBuild | 104 | ||||
-rw-r--r-- | system/lzip/lzip.info | 10 | ||||
-rw-r--r-- | system/lzip/slack-desc | 19 |
4 files changed, 0 insertions, 139 deletions
diff --git a/system/lzip/README b/system/lzip/README deleted file mode 100644 index c0ebf2736c..0000000000 --- a/system/lzip/README +++ /dev/null @@ -1,6 +0,0 @@ -Lzip is a lossless data compressor based on the LZMA (Lempel-Ziv-Markov -chain-Algorithm) algorithm designed by Igor Pavlov. Lzip decompresses -almost as fast as gzip and compresses better than bzip2, but requires -more memory and time during compression. These features make lzip well -suited for software distribution and data archival. -Lzip has a user interface similar to the one of gzip or bzip2. diff --git a/system/lzip/lzip.SlackBuild b/system/lzip/lzip.SlackBuild deleted file mode 100644 index ba3af43f84..0000000000 --- a/system/lzip/lzip.SlackBuild +++ /dev/null @@ -1,104 +0,0 @@ -#!/bin/sh - -# Slackware build script for lzip - -# Copyright 2011 Barry J. Grundy <bgrundy(at)linuxleo.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. - -# Updated for version 1.16 November 2014. - -PRGNAM=lzip -VERSION=${VERSION:-1.16} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 # exit on most errors - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -rm -rf $TMP/$PRGNAM-$VERSION -cd $TMP -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 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ - ./configure \ - --prefix=/usr \ - --mandir=/usr/man \ - --infodir=/usr/info \ - -make CFLAGS+="$SLKCFLAGS" CXXFLAGS="$SLKCFLAGS" -make install DESTDIR=$PKG - -find $PKG | xargs 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 - -rm -f $PKG/usr/info/dir -gzip -9 $PKG/usr/info/* - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -ar \ - AUTHORS COPYING ChangeLog INSTALL NEWS README doc/ \ - $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -find $PKG/usr/doc -type f -exec chmod 644 {} \; - -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/lzip/lzip.info b/system/lzip/lzip.info deleted file mode 100644 index 8608a3ca86..0000000000 --- a/system/lzip/lzip.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="lzip" -VERSION="1.16" -HOMEPAGE="http://www.nongnu.org/lzip/lzip.html" -DOWNLOAD="http://download.savannah.gnu.org/releases/lzip/lzip-1.16.tar.gz" -MD5SUM="716a9876dc595ec52d4f3bda81e42471" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Barry J. Grundy" -EMAIL="bgrundy<at>linuxleo.com" diff --git a/system/lzip/slack-desc b/system/lzip/slack-desc deleted file mode 100644 index 5c7e5f4ac1..0000000000 --- a/system/lzip/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------------------------------------------------------| -lzip: lzip (lossless data compression tool) -lzip: -lzip: Lzip is a lossless data compressor based on the LZMA (Lempel-Ziv-Markov -lzip: chain-Algorithm) algorithm designed by Igor Pavlov. Lzip decompresses -lzip: almost as fast as gzip and compresses better than bzip2, but requires -lzip: more memory and time during compression. These features make lzip well -lzip: suited for software distribution and data archival. -lzip: Lzip has a user interface similar to the one of gzip or bzip2. -lzip: -lzip: Homepage: http://www.nongnu.org/lzip/lzip.html -lzip: |