2023-07-08 01:28:56 -04:00
|
|
|
# Description: A weather plugin for the xfce-panel
|
|
|
|
# URL: https://xfce.org
|
|
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
2024-12-23 22:14:30 +01:00
|
|
|
# Depends on: json-c libsoup xfce4-panel
|
2023-07-08 01:28:56 -04:00
|
|
|
|
|
|
|
name=xfce4-weather-plugin
|
2024-03-08 08:30:13 -05:00
|
|
|
version=0.11.2
|
2023-07-08 01:28:56 -04:00
|
|
|
release=1
|
|
|
|
source=(https://archive.xfce.org/src/panel-plugins/$name/${version%.*}/$name-$version.tar.bz2)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--libdir=/usr/lib \
|
|
|
|
--libexecdir=/usr/lib/$name \
|
|
|
|
--disable-nls \
|
|
|
|
--disable-debug
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
}
|