graphics/webp-pixbuf-loader: Added (WEBP loader for gdk-pixbuf2).

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
B. Watson 2019-12-29 11:13:44 +07:00 committed by Willy Sudiarto Raharjo
parent e51925f6ce
commit bfcb447214
6 changed files with 161 additions and 0 deletions

View File

@ -0,0 +1,4 @@
webp-pixbuf-loader (WEBP loader for gdk-pixbuf2)
This allows gdk-pixbuf2 (and software using it) to load WebP images.
In particular it allows qiv and geeqie to display WebP images.

View File

@ -0,0 +1,3 @@
if [ -x /usr/bin/update-gdk-pixbuf-loaders ]; then
/usr/bin/update-gdk-pixbuf-loaders >/dev/null 2>&1
fi

View File

@ -0,0 +1,42 @@
#!/bin/sh
# Create source tarball from git repo, with generated version
# number. We don't include the git history in the tarball.
# Note that this script doesn't need to be run as root. It does
# need to be able to write to the current directory it's run from.
PRGNAM=webp-pixbuf-loader
CLONE_URL=https://github.com/aruiz/$PRGNAM.git
set -e
GITDIR=$( mktemp -dt $PRGNAM.git.XXXXXX )
rm -rf $GITDIR
git clone $CLONE_URL $GITDIR
CWD="$( pwd )"
cd $GITDIR
VERSION=$( git log --date=format:%Y%m%d --pretty=format:%cd.%h -n1 )
rm -rf .git
find . -name .gitignore -print0 | xargs -0 rm -f
cd "$CWD"
rm -rf $PRGNAM-$VERSION $PRGNAM-$VERSION.tar.xz
mv $GITDIR $PRGNAM-$VERSION
tar cvfJ $PRGNAM-$VERSION.tar.xz $PRGNAM-$VERSION
cat <<EOF
Archive created: $PRGNAM-$VERSION.tar.xz
Update $PRGNAM.info with:
VERSION="$VERSION"
DOWNLOAD="http://urchlay.naptime.net/~urchlay/src/$PRGNAM-$VERSION.tar.xz"
MD5SUM="$( md5sum $PRGNAM-$VERSION.tar.xz | cut -d' ' -f1 )"
Don't forget to upload the new source!
EOF

View 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 ':' except on otherwise blank lines.
|-----handy-ruler------------------------------------------------------|
webp-pixbuf-loader: webp-pixbuf-loader (WEBP loader for gdk-pixbuf2)
webp-pixbuf-loader:
webp-pixbuf-loader: This allows gdk-pixbuf2 (and software using it) to load WebP images.
webp-pixbuf-loader: In particular it allows qiv and geeqie to display WebP images.
webp-pixbuf-loader:
webp-pixbuf-loader:
webp-pixbuf-loader:
webp-pixbuf-loader:
webp-pixbuf-loader:
webp-pixbuf-loader:
webp-pixbuf-loader:

View File

@ -0,0 +1,83 @@
#!/bin/sh
# Slackware build script for webp-pixbuf-loader
# Written by B. Watson (yalhcru@gmail.com)
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
PRGNAM=webp-pixbuf-loader
VERSION=${VERSION:-20191003.fb04954}
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.xz
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 {} \+
# this stuff is for making meson/ninja update the loaders, we do that
# in doinst.sh instead.
sed -i '/gdk_pb_query_loaders/d' meson.build
mkdir build
cd build
CFLAGS="-Wl,-s $SLKCFLAGS" \
CXXFLAGS="-Wl,-s $SLKCFLAGS" \
meson .. \
--buildtype=release \
--infodir=/usr/info \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--localstatedir=/var \
--mandir=/usr/man \
--prefix=/usr \
--sysconfdir=/etc
ninja
DESTDIR=$PKG ninja install
cd ..
DOCDIR=$PKG/usr/doc/$PRGNAM-$VERSION
mkdir -p $DOCDIR
cat $CWD/README > $DOCDIR/README
cat $CWD/$PRGNAM.SlackBuild > $DOCDIR/$PRGNAM.SlackBuild
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View File

@ -0,0 +1,10 @@
PRGNAM="webp-pixbuf-loader"
VERSION="20191003.fb04954"
HOMEPAGE="https://github.com/aruiz/webp-pixbuf-loader"
DOWNLOAD="http://urchlay.naptime.net/~urchlay/src/webp-pixbuf-loader-20191003.fb04954.tar.xz"
MD5SUM="d3e9041ab56b18020c647dcb9f3176d4"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="meson libwebp"
MAINTAINER="B. Watson"
EMAIL="yalhcru@gmail.com"