wok view xfce4-whiskermenu-plugin/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (24 months ago)
parents 3fe265729ca7
children
line source
1 # SliTaz package receipt.
3 PACKAGE="xfce4-whiskermenu-plugin"
4 VERSION="1.7.5"
5 CATEGORY="x-window"
6 SHORT_DESC="An alternate application launcher for Xfce."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://gottcode.org/xfce4-whiskermenu-plugin/"
11 WGET_URL="https://archive.be.xfce.org/src/panel-plugins/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="gtk+ libexo garcon xfce4-panel libxfce4ui"
14 BUILD_DEPENDS="cmake pkg-config gtk+-dev libexo-dev garcon-dev xfce4-panel-dev \
15 libxfce4ui-dev"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - $WEB_SITE 2>/dev/null | \
21 sed '/Version/!d;s|.*sion ||;s|<.*||'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 mkdir build && cd build
28 cmake -DCMAKE_INSTALL_PREFIX=/usr ..
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/usr $fs/
37 }