Package: webp 0.6.0
WebP is a modern image format for the web
README
The cwebp utility encodes images in either JPEG, PNG or TIFF format
into WebP, while dwebp decodes them back into PNG.
Package documentation is installed in your: ~/.local/share/doc/webp
Receip
PACKAGE="webp"
VERSION="0.6.0"
SHORT_DESC="WebP is a modern image format for the web"
MAINTAINER="pankso@slitaz.org"
LICENSE="Apache2.0"
WEB_SITE="https://developers.google.com/speed/webp/"
SUP_DEPS=""
DEPENDS=""
sup_install() {
tarball="libwebp-${VERSION}-linux-x86-32.tar.gz"
dirname=${tarball%.tar.gz}
wget https://storage.googleapis.com/downloads.webmproject.org/releases/webp/${tarball}
tar xzf ${tarball}
mkdir -p .local/share/doc/webp
mv ${dirname}/bin .local
mv ${dirname}/doc/*.txt .local/share/doc/webp
rm .local/bin/anim_diff
rm -rf ${dirname}*
}
cook_date="2017-03-01 00:09"