mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 22:52:20 +01:00
25 lines
573 B
Plaintext
25 lines
573 B
Plaintext
# Description: captures output from an external script and displays on the xfce-panel
|
|
# URL: https://docs.xfce.org/panel-plugins/xfce4-genmon-plugin/start
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: xfce4-panel hicolor-icon-theme
|
|
|
|
name=xfce4-genmon-plugin
|
|
version=4.2.0
|
|
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
|
|
|
|
}
|