mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-23 15:12:20 +01:00
28 lines
670 B
Plaintext
28 lines
670 B
Plaintext
# Description: A weather plugin for the Xfce desktop environment
|
|
# URL: http://goodies.xfce.org/projects/panel-plugins/xfce4-weather-plugin
|
|
# Maintainer: jolupa, jlpavon at me dot com
|
|
# Depends on: gtk3 glib libxfce4util libxfce4ui xfce4-panel libsoup upower
|
|
|
|
name=xfce4-weather-plugin
|
|
version=0.10.0
|
|
release=2
|
|
source=(http://archive.xfce.org/src/panel-plugins/xfce4-weather-plugin/${version:0:4}/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--disable-debug \
|
|
--enable-upower \
|
|
GEONAMES_USERNAME=cruxfce
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
#rm -r $PKG/usr/share/locales
|
|
|
|
}
|