2024-12-25 04:43:37 -05:00

27 lines
580 B
Plaintext

# Description: A multi-protocol Mail watcher for the xfce-panel
# URL: https://xfce.org
# Maintainer: mac-a-r0ni, j at lngn dot net
# Depends on: xfce4-panel gnutls
name=xfce4-mailwatch-plugin
version=1.3.2
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
find $PKG/usr/lib/* -name "*.la" -type f|xargs rm -f
}