mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-16 04:22:20 +01:00
27 lines
532 B
Plaintext
27 lines
532 B
Plaintext
|
# 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
|
||
|
version=1.1.6
|
||
|
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
|
||
|
|
||
|
}
|