mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
libraries/libwebp: Added (WebP photo compression library)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
20d5a40ea0
commit
af19b2e74b
4 changed files with 108 additions and 0 deletions
5
libraries/libwebp/README
Normal file
5
libraries/libwebp/README
Normal file
|
@ -0,0 +1,5 @@
|
|||
WebP is a method of lossy compression that can be used on photographic
|
||||
images. The degree of compression is adjustable so a user can choose
|
||||
the trade-off between file size and image quality.
|
||||
WebP typically achieves an average of 39% more compression than JPEG
|
||||
and JPEG 2000, without loss of image quality.
|
74
libraries/libwebp/libwebp.SlackBuild
Normal file
74
libraries/libwebp/libwebp.SlackBuild
Normal file
|
@ -0,0 +1,74 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for webP
|
||||
# written by powtrix (@gmail.com)
|
||||
|
||||
PRGNAM=libwebp
|
||||
VERSION=0.1.3
|
||||
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
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar zxf $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 \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
||||
make
|
||||
make install-strip DESTDIR=$PKG
|
||||
|
||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
AUTHORS COPYING ChangeLog NEWS PATENTS README \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$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}
|
10
libraries/libwebp/libwebp.info
Normal file
10
libraries/libwebp/libwebp.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="libwebp"
|
||||
VERSION="0.1.3"
|
||||
HOMEPAGE="http://code.google.com/speed/webp/"
|
||||
DOWNLOAD="http://webp.googlecode.com/files/libwebp-0.1.3.tar.gz"
|
||||
MD5SUM="254d4670e14e9ed881f0536b006ab336"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="powtrix"
|
||||
EMAIL="powtrix@gmail.com"
|
||||
APPROVED="rworkman"
|
19
libraries/libwebp/slack-desc
Normal file
19
libraries/libwebp/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# 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------------------------------------------------------|
|
||||
libwebp: libwebp (WebP photo compression library)
|
||||
libwebp:
|
||||
libwebp: WebP is a method of lossy compression that can be used on
|
||||
libwebp: photographic images. The degree of compression is adjustable so a
|
||||
libwebp: user can choose the trade-off between file size and image quality.
|
||||
libwebp: WebP typically achieves an average of 39% more compression than
|
||||
libwebp: JPEG and JPEG 2000, without loss of image quality.
|
||||
libwebp:
|
||||
libwebp: Homepage: http://code.google.com/speed/webp/
|
||||
libwebp:
|
||||
libwebp:
|
Loading…
Reference in a new issue