PKGBUILDs/community/raw-thumbnailer/PKGBUILD

22 lines
590 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# Maintainer: pressh <pressh at gmail dot com>
# Contributor: boromil@gmail.com
pkgname=raw-thumbnailer
pkgver=0.2
pkgrel=1
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 $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install || return 1
}