mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-23 07:02:20 +01:00
31 lines
629 B
Plaintext
31 lines
629 B
Plaintext
# Description: Plugin menu
|
|
# URL: https://git.xfce.org/panel-plugins/xfce4-whiskermenu-plugin/about/
|
|
# Maintainer: jolupa, jolupameister at gmail dot com
|
|
# Depends on: gtk3 exo garcon xfce4-panel libxfce4ui libxfce4util
|
|
|
|
name=xfce4-whiskermenu-plugin
|
|
version=2.3.2
|
|
release=2
|
|
source=(https://git.xfce.org/panel-plugins/$name/snapshot/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake $SRC/$name-$version \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
#rm -r $PKG/usr/share/locale
|
|
|
|
}
|
|
|