summaryrefslogtreecommitdiff
path: root/community/libwebp
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-02-21 23:15:10 +0000
committerroot <root@rshg054.dnsready.net>2012-02-21 23:15:10 +0000
commit1f55cedf5ea357497d2a98eb2be78d8dab4a9665 (patch)
tree5e44ad19f2672ee92283377c9fe6eab3c8a815d7 /community/libwebp
parent11484c032f8c236b2044e715a9a3b28e33f65598 (diff)
Tue Feb 21 23:15:10 UTC 2012
Diffstat (limited to 'community/libwebp')
-rw-r--r--community/libwebp/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/community/libwebp/PKGBUILD b/community/libwebp/PKGBUILD
new file mode 100644
index 000000000..eb5dbca25
--- /dev/null
+++ b/community/libwebp/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 61589 2012-01-03 23:37:49Z arodseth $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+# Contributor: Jon Nordby <jononor@gmail.com>
+
+pkgname=libwebp
+pkgver=0.1.3
+pkgrel=2
+pkgdesc="WebP library and conversion tools"
+arch=('x86_64' 'i686')
+url="http://code.google.com/intl/en/speed/webp/"
+license=('BSD')
+depends=('libpng' 'libjpeg')
+options=('!libtool')
+source=("http://webp.googlecode.com/files/$pkgname-$pkgver.tar.gz")
+sha256sums=('40b18456e39b2822311b0ea161d6f09507cf5e8e937b02b9be3ee994ded67aba')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir/" install
+ install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# vim:set ts=2 sw=2 et: