blob: 48a0981dfa184597b6357ad73c4c79d00046f675 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Contributor: Kiyoshi Aman <kiyoshi.aman@gmail.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libwebp
pkgver=0.4.4
pkgrel=0
pkgdesc="Libraries for working with WebP images"
url="https://developers.google.com/speed/webp/"
arch="all"
license="BSD"
depends=
depends_dev=
makedepends="libpng-dev libjpeg-turbo-dev tiff-dev giflib-dev
automake autoconf libtool"
install=""
subpackages="$pkgname-dev $pkgname-doc $pkgname-tools"
source="http://downloads.webmproject.org/releases/webp/libwebp-$pkgver.tar.gz"
_builddir="$srcdir/$pkgname-$pkgver"
build() {
cd "$_builddir"
sh autogen.sh
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--disable-static \
--enable-libwebpmux \
--enable-libwebpdemux \
--enable-libwebpdecoder \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
mkdir -p "$pkgdir"/usr/share/doc/$pkgname
install -Dm644 PATENTS README "$pkgdir"/usr/share/doc/$pkgname
}
tools() {
pkgdesc="The WebP command line tools"
mkdir -p "$subpkgdir"/usr/
mv "$pkgdir"/usr/bin "$subpkgdir"/usr/
}
md5sums="b737062cf688e502b940b460ddc3015f libwebp-0.4.4.tar.gz"
sha256sums="c65d34edb57338e331ba4d622227a2b3179444cfca17d02c34f1ead63f603e86 libwebp-0.4.4.tar.gz"
sha512sums="262772e5409114636e2eebf48c0c57c52376898509da1795b1c457cd3e7480e294a51f9f8f361600f0f9a7de25817b89f29c82409b104f1f7f2486fd62f5b877 libwebp-0.4.4.tar.gz"
|