mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
590 B
Bash
21 lines
590 B
Bash
# 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
|
|
}
|