blob: a684c0c92e9b9a016be7645512e630f18f35e033 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Description: Gere de nombreuses vignettes pour Thunar
# URL: http://goodies.xfce.org/projects/thunar-plugins/thunar-thumbnailers
# Maintainer: NuTyX core team
# Packager: fred.galusik at gmail dot com
# Depends on: ffmpegthumbnailer, imagemagick, thunar, ufraw
# Run on: ffmpegthumbnailer,imagemagick,thunar,ufraw
name=thunar-thumbnailers
version=0.4.1
release=7
source=(http://goodies.xfce.org/releases/$name/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--libexecdir=/usr/lib/xfce4 \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static \
--enable-ffmpeg
make
make DESTDIR=$PKG install
}
|