2023-07-08 01:28:56 -04:00
|
|
|
# Description: A mount/umount plugin for the xfce-panel
|
|
|
|
# URL: https://xfce.org
|
|
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
|
|
# Depends on: xfce4-panel
|
|
|
|
|
|
|
|
name=xfce4-mount-plugin
|
2024-12-25 04:45:41 -05:00
|
|
|
version=1.1.7
|
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 \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--disable-nls \
|
|
|
|
--disable-debug
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
2024-12-25 04:45:41 -05:00
|
|
|
find $PKG/usr/lib/* -name "*.la" -type f|xargs rm -f
|
2023-07-08 01:28:56 -04:00
|
|
|
}
|