wok rev 20188

Add xfce4-whiskermenu-plugin
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Feb 01 20:06:00 2018 +0100 (2018-02-01)
parents 17a7f1c3ddc6
children 1e3612fe4a6a
files ipxe/stuff/ipxe.cmd xfce4-whiskermenu-plugin/receipt
line diff
     1.1 --- a/ipxe/stuff/ipxe.cmd	Thu Feb 01 15:51:03 2018 +0100
     1.2 +++ b/ipxe/stuff/ipxe.cmd	Thu Feb 01 20:06:00 2018 +0100
     1.3 @@ -1,14 +1,15 @@
     1.4  #!ipxe
     1.5  
     1.6  set menu-timeout 3000
     1.7 -dhcp && console --picture http://mirror.slitaz.org/pxe/ipxe/slitaz.png ||
     1.8 +dhcp && isset ${filename} && autoboot ||
     1.9 +console --picture http://mirror.slitaz.org/pxe/ipxe/slitaz.png ||
    1.10  
    1.11  :menu
    1.12  menu SliTaz net boot menu
    1.13  item --key b boot	Local boot
    1.14  item --gap
    1.15  item --gap Network boot
    1.16 -item --key l lan	Your PXE boot ${filename}
    1.17 +isset ${filename} && item --key l lan	Your PXE boot ${filename}
    1.18  item --key w web	SliTaz WEB boot
    1.19  item --key r rolling	SliTaz development version
    1.20  item --gap
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/xfce4-whiskermenu-plugin/receipt	Thu Feb 01 20:06:00 2018 +0100
     2.3 @@ -0,0 +1,30 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="xfce4-whiskermenu-plugin"
     2.7 +VERSION="1.7.5"
     2.8 +CATEGORY="x-window"
     2.9 +SHORT_DESC="An alternate application launcher for Xfce."
    2.10 +MAINTAINER="pascal.bellard@slitaz.org"
    2.11 +LICENSE="GPL2"
    2.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.13 +WEB_SITE="https://gottcode.org/xfce4-whiskermenu-plugin/"
    2.14 +WGET_URL="https://archive.be.xfce.org/src/panel-plugins/$PACKAGE/${VERSION%.*}/$TARBALL"
    2.15 +
    2.16 +DEPENDS="gtk+ libexo garcon xfce4-panel libxfce4ui"
    2.17 +BUILD_DEPENDS="cmake pkg-config gtk+-dev libexo-dev garcon-dev xfce4-panel-dev \
    2.18 +libxfce4ui-dev"
    2.19 +
    2.20 +# Rules to configure and make the package.
    2.21 +compile_rules()
    2.22 +{
    2.23 +	mkdir build && cd build
    2.24 +	cmake -DCMAKE_INSTALL_PREFIX=/usr ..
    2.25 +	make &&
    2.26 +	make DESTDIR=$DESTDIR install
    2.27 +}
    2.28 +
    2.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.30 +genpkg_rules()
    2.31 +{
    2.32 +	cp -a $install/usr $fs/
    2.33 +}