28 lines
776 B
Plaintext
28 lines
776 B
Plaintext
# Description: Ristretto is a fast and lightweight picture-viewer for the Xfce desktop environment.
|
|
# URL: http://goodies.xfce.org/projects/applications/ristretto
|
|
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
|
# Packager: Jose V Beneyto, sepen at crux dot nu
|
|
# Depends on: thunar libexif
|
|
# Group: xfce4
|
|
|
|
name=ristretto
|
|
version=0.0.91
|
|
release=1
|
|
source=(http://archive.xfce.org/src/apps/$name/${version%.*}/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
# remove po stuff
|
|
sed -i Makefile.* -e '/^SUBDIRS =/ s/po //'
|
|
|
|
# fix docdir
|
|
sed -i docs/manual/C/Makefile.* docs/manual/C/images/Makefile.* \
|
|
-e 's|$(datadir)/doc/ristretto/|$(datadir)/ristretto/|g'
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-debug
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|