mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
29 lines
985 B
Bash
29 lines
985 B
Bash
|
# Maintainer: Ronald van Haren <ronald.archlinux.org>
|
||
|
# Contributor: boromil@gmail.com
|
||
|
|
||
|
pkgname=thunar-thumbnailers
|
||
|
pkgver=0.4.1
|
||
|
pkgrel=3
|
||
|
pkgdesc="The thunar-thumbnailers project provides additional thumbnailers for Thunar, that also cover less common file formats."
|
||
|
url="http://goodies.xfce.org/projects/thunar-plugins/thunar-thumbnailers/"
|
||
|
license=('GPL2')
|
||
|
arch=('i686' 'x86_64')
|
||
|
groups=('xfce4-goodies')
|
||
|
depends=('imagemagick' 'ffmpegthumbnailer')
|
||
|
optdepends=('raw-thumbnailer: support for Raw Digital Camera Images'
|
||
|
'dcraw: support for Raw Digital Camera Image')
|
||
|
makedepends=('raw-thumbnailer' 'dcraw' 'unzip')
|
||
|
options=('!libtool')
|
||
|
install=$pkgname.install
|
||
|
source=(http://goodies.xfce.org/releases/thunar-thumbnailers/$pkgname-$pkgver.tar.bz2)
|
||
|
md5sums=('041b8aa0576e15491661741d1868547f')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr --enable-ffmpeg --enable-raw \
|
||
|
--libexecdir=/usr/lib/xfce4
|
||
|
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install || return 1
|
||
|
}
|