mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-02-02 18:52:19 +01:00
29 lines
598 B
Plaintext
29 lines
598 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=1
|
||
|
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
|
||
|
|
||
|
}
|
||
|
|