2007-07-14 11:53:44 +02:00
|
|
|
# Description: Query a dictionary server to search for the translation or explanation of a word.
|
|
|
|
# URL: http://goodies.xfce.org/projects/panel-plugins/xfce4-dict-plugin
|
2007-12-23 19:35:21 +01:00
|
|
|
# Maintainer: Jose V Beneyto, sepen at users dot sourceforge dot net
|
|
|
|
# Packager: Jose V Beneyto, sepen at users dot sourceforge dot net
|
2007-07-14 11:53:44 +02:00
|
|
|
# Depends on: xfce4-panel
|
2007-07-24 13:32:42 +02:00
|
|
|
# Group: xfce4
|
2007-07-14 11:53:44 +02:00
|
|
|
|
2008-06-12 20:35:22 +02:00
|
|
|
name=xfce4-dict
|
|
|
|
version=0.4.0
|
|
|
|
release=1
|
|
|
|
source=(http://goodies.xfce.org/releases/$name/$name-$version.tar.gz)
|
2007-07-14 11:53:44 +02:00
|
|
|
|
|
|
|
build() {
|
2008-02-05 20:20:49 +01:00
|
|
|
cd $name-$version
|
2007-07-14 11:53:44 +02:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--libexecdir=/usr/lib \
|
2008-06-12 20:38:58 +02:00
|
|
|
--mandir=/usr/man \
|
2007-07-14 11:53:44 +02:00
|
|
|
--disable-debug
|
|
|
|
make
|
2008-02-05 20:20:49 +01:00
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share/locale
|
|
|
|
find $PKG/usr/share/xfce4/panel-plugins -type f -name '*.desktop' \
|
2008-01-19 16:45:37 +01:00
|
|
|
-exec sed -r '/^(Comment|Name)\[/d' -i {} \;
|
2007-07-14 11:53:44 +02:00
|
|
|
}
|