summaryrefslogtreecommitdiff
path: root/community/raw-thumbnailer/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/raw-thumbnailer/PKGBUILD')
-rw-r--r--community/raw-thumbnailer/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/community/raw-thumbnailer/PKGBUILD b/community/raw-thumbnailer/PKGBUILD
new file mode 100644
index 000000000..e6d85babd
--- /dev/null
+++ b/community/raw-thumbnailer/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 22594 2010-07-23 08:17:42Z lcarlier $
+# Maintainer: pressh <pressh at gmail dot com>
+# Contributor: boromil@gmail.com
+
+pkgname=raw-thumbnailer
+pkgver=0.2
+pkgrel=2
+pkgdesc="A lightweight and fast raw image thumbnailer that can be used by file managers."
+url="http://code.google.com/p/raw-thumbnailer/"
+license=('GPL2')
+arch=('i686' 'x86_64')
+depends=('libopenraw')
+source=(http://raw-thumbnailer.googlecode.com/files/$pkgname-$pkgver.tar.gz)
+md5sums=('f107575aa32a0d53802cf5beead18bf8')
+
+build() {
+ cd ${srcdir}/$pkgname-$pkgver
+
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd ${srcdir}/$pkgname-$pkgver
+
+ make DESTDIR="$pkgdir" install
+}