mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-02-02 02:42:19 +01:00
27 lines
555 B
Plaintext
27 lines
555 B
Plaintext
# Description: A clipboard plugin for the xfce-panel
|
|
# URL: https://xfce.org
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: qrencode xfce4-panel
|
|
|
|
name=xfce4-clipman-plugin
|
|
version=1.6.7
|
|
release=1
|
|
source=(https://archive.xfce.org/src/panel-plugins/$name/${version:0:3}/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--disable-nls \
|
|
--disable-debug \
|
|
--sysconfdir=/etc
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
find $PKG/usr/lib/* -name "*.la" -type f|xargs rm -f
|
|
|
|
}
|