mirror of
https://github.com/Ponce/slackbuilds
synced 2024-12-01 01:00:03 +01:00
system/lzma: Removed from 13.0 repository
This commit is contained in:
parent
786d57f5ab
commit
fcf2cf9d57
4 changed files with 0 additions and 108 deletions
|
@ -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.
|
|
|
@ -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
|
|
|
@ -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"
|
|
|
@ -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:
|
|
Loading…
Reference in a new issue