23 lines
684 B
Plaintext
23 lines
684 B
Plaintext
# Description: Date/Time/Calendar plugin for the XFce4 panel
|
|
# URL: http://goodies.xfce.org/projects/panel-plugins/xfce4-datetime-plugin
|
|
# Maintainer: CRUX Xfce Team, xfce-ports at crux dot nu
|
|
# Packager: Jochem Kossen, jkossen at xs4all dot nl
|
|
# Depends on: xfce4-panel
|
|
# Group: xfce4
|
|
|
|
name=xfce4-datetime-plugin
|
|
version=0.6.1
|
|
release=1
|
|
source=(http://goodies.xfce.org/releases/$name/$name-$version.tar.bz2)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--without-locales-dir
|
|
make
|
|
make install DESTDIR=$PKG
|
|
rm -rf $PKG/usr/share/locale
|
|
find $PKG/usr/share/xfce4/panel-plugins -type f -name '*.desktop' \
|
|
-exec sed -r '/\[.+\]=/d' -i {} \;
|
|
}
|