24 lines
673 B
Plaintext
24 lines
673 B
Plaintext
# Description: Extension library for Xfce4
|
|
# URL: http://www.os-cillation.de/
|
|
# Maintainer: Jürgen Daubert, juergen dot daubert at t-online dot de
|
|
# Depends on: xfce-mcs-manager, p5-uri
|
|
# Group: xfce4
|
|
|
|
name=exo
|
|
version=0.3.4
|
|
release=1
|
|
source=(http://www.xfce.org/archive/xfce-4.4.2/src/$name-$version.tar.bz2)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--libexecdir=/usr/lib/exo \
|
|
--enable-python=no \
|
|
--disable-static \
|
|
--disable-debug
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -r $PKG/usr/share/{locale,xfce4/doc/??,gtk-doc}
|
|
}
|