2024-12-25 05:13:44 -05:00

26 lines
617 B
Plaintext

# Description: Displays the current CPU load, memory in use, swap space and the uptime
# URL: https://docs.xfce.org/panel-plugins/xfce4-systemload-plugin/start
# Maintainer: mac-a-r0ni, j at lngn dot net
# Depends on: xfce4-panel
name=xfce4-systemload-plugin
version=1.3.3
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 \
--localstatedir=/var \
--disable-nls \
--disable-debug
make
make DESTDIR=$PKG install
find $PKG/usr/lib/* -name "*.la" -type f|xargs rm -f
}