25 lines
720 B
Plaintext
25 lines
720 B
Plaintext
# Description: Extension library for Xfce4
|
|
# URL: http://www.os-cillation.de/
|
|
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
|
# Packager: Juergen Daubert, juergen dot daubert at t-online dot de
|
|
# Depends on: gtk libxfce4util p5-uri libnotify intltool
|
|
# Group: xfce4
|
|
|
|
name=exo
|
|
version=0.5.0
|
|
release=1
|
|
source=(http://archive.xfce.org/src/xfce/$name/${version%.*}/$name-$version.tar.bz2)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--libexecdir=/usr/lib/exo \
|
|
--disable-python \
|
|
--disable-static \
|
|
--disable-debug
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -r $PKG/usr/share/{locale,xfce4/doc/{??,??_??},gtk-doc}
|
|
}
|