[ User ] Login

Package: webp 0.6.0

Download SUP Hub
WebP is a modern image format for the web
∗ Maintainer: Christophe Lincoln - Build date: 2017-03-01 00:09 - License: Apache2.0

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

# SliTaz User Package 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 dependencies will be automatically downloaded but system wide 
# deps must be manually installed by root.
SUP_DEPS=""
DEPENDS=""

# Here are the optional install rules (download, configure, etc)
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"