summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author Heinz Wiesinger2010-05-13 00:09:23 +0200
committer Heinz Wiesinger2010-05-13 00:09:23 +0200
commitfcf2cf9d57b9e0846767884af0a64f55e65c1e8a (patch)
tree51b6556d56117d57506c713f948eb9f1721490b1 /system
parent786d57f5ab42cfd20f2505febf3670a19111c200 (diff)
downloadslackbuilds-fcf2cf9d57b9e0846767884af0a64f55e65c1e8a.tar.gz
system/lzma: Removed from 13.0 repository
Diffstat (limited to 'system')
-rw-r--r--system/lzma/README6
-rw-r--r--system/lzma/lzma.SlackBuild75
-rw-r--r--system/lzma/lzma.info8
-rw-r--r--system/lzma/slack-desc19
4 files changed, 0 insertions, 108 deletions
diff --git a/system/lzma/README b/system/lzma/README
deleted file mode 100644
index 2834114b53..0000000000
--- a/system/lzma/README
+++ /dev/null
@@ -1,6 +0,0 @@
-The Lempel-Ziv-Markov chain-Algorithm (LZMA) provides very high
-compression ratio and fast decompression.
-The core of the LZMA utils is Igor Pavlov's LZMA SDK containing
-the actual LZMA encoder/decoder. LZMA utils add a few scripts
-which provide gzip-like command line interface and a couple of
-other LZMA related tools.
diff --git a/system/lzma/lzma.SlackBuild b/system/lzma/lzma.SlackBuild
deleted file mode 100644
index 17834d984c..0000000000
--- a/system/lzma/lzma.SlackBuild
+++ /dev/null
@@ -1,75 +0,0 @@
-#!/bin/sh
-
-## Written by Martin Ivanov (tramni@abv.bg)
-## Package Homepage: http://tukaani.org/lzma
-
-# Modified by Robby Workman <rworkman@slackbuilds.org>
-
-PRGNAM=lzma
-VERSION=4.32.7
-ARCH=${ARCH:-i486}
-BUILD=${BUILD:-2}
-TAG=${TAG:-_SBo}
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
- elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$VERSION
-chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --disable-static \
- --build=$ARCH-slackware-linux
-
-make
-make install DESTDIR=$PKG
-
-( cd $PKG
- find . | xargs file | grep "executable" | grep ELF | cut -d : -f 1 | \
- xargs -r strip --strip-unneeded 2>/dev/null || true
- find . | xargs file | grep "shared object" | grep ELF | cut -d : -f 1 | \
- xargs -r strip --strip-unneeded 2>/dev/null || true
-)
-
-( cd $PKG/usr/man
- find . -type f -exec gzip -9 {} \;
- for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
-)
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- AUTHORS ChangeLog COPYING* INSTALL NEWS README THANKS \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-find $PKG/usr/doc/$PRGNAM-$VERSION -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.tgz
diff --git a/system/lzma/lzma.info b/system/lzma/lzma.info
deleted file mode 100644
index 21f158f0c0..0000000000
--- a/system/lzma/lzma.info
+++ /dev/null
@@ -1,8 +0,0 @@
-PRGNAM="lzma"
-VERSION="4.32.7"
-HOMEPAGE="http://tukaani.org/lzma"
-DOWNLOAD="http://tukaani.org/lzma/lzma-4.32.7.tar.gz"
-MD5SUM="2a748b77a2f8c3cbc322dbd0b4c9d06a"
-MAINTAINER="Martin Ivanov"
-EMAIL="tramni@abv.bg"
-APPROVED="Erik Hanson"
diff --git a/system/lzma/slack-desc b/system/lzma/slack-desc
deleted file mode 100644
index 5703ade6cc..0000000000
--- a/system/lzma/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 ':'.
-
- |-----handy-ruler------------------------------------------------------|
-lzma: LZMA utils (High compression utility based on LZMA SDK)
-lzma:
-lzma: LZMA provides very high compression ratio and fast decompression.
-lzma: The core of the LZMA utils is Igor Pavlov's LZMA SDK containing
-lzma: the actual LZMA encoder/decoder. LZMA utils add a few scripts
-lzma: which provide gzip-like command line interface and a couple of
-lzma: other LZMA related tools.
-lzma:
-lzma: Home: http://tukaani.org/lzma/ - http://7-zip.org/sdk.html
-lzma:
-lzma: