mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 14:52:19 +01:00
27 lines
591 B
Plaintext
27 lines
591 B
Plaintext
|
# Description: Smart Bookmark plugin for the xfce-panel
|
||
|
# URL: https://docs.xfce.org/panel-plugins/xfce4-smartbookmark-plugin/start
|
||
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
||
|
# Depends on: xfce4-panel xorg-libxt
|
||
|
|
||
|
name=xfce4-smartbookmark-plugin
|
||
|
version=0.5.2
|
||
|
release=1
|
||
|
source=(https://archive.xfce.org/src/panel-plugins/$name/${version%.*}/$name-$version.tar.bz2)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--libexecdir=/usr/lib \
|
||
|
--sysconfdir=/etc \
|
||
|
--localstatedir=/var \
|
||
|
--disable-debug
|
||
|
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
|
||
|
rm -rf $PKG/usr/share/locale
|
||
|
|
||
|
}
|