2023-07-20 06:08:23 -04:00
|
|
|
# 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
|
2024-08-27 04:15:26 -04:00
|
|
|
# Depends on: xfce4-panel
|
2023-07-20 06:08:23 -04:00
|
|
|
|
|
|
|
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 \
|
2024-08-27 04:15:26 -04:00
|
|
|
--disable-debug \
|
|
|
|
--disable-nls
|
2023-07-20 06:08:23 -04:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
rm -rf $PKG/usr/share/locale
|
2024-08-27 04:15:26 -04:00
|
|
|
rm $PKG/usr/lib/xfce4/panel/plugins/*.la
|
2023-07-20 06:08:23 -04:00
|
|
|
}
|