# HG changeset patch # User Pascal Bellard # Date 1517511960 -3600 # Node ID 3fe265729ca7ba82eb950f0c95f29b35f4b00ab4 # Parent 17a7f1c3ddc6cb2899e1b1cb9183cb23a0925a1c Add xfce4-whiskermenu-plugin diff -r 17a7f1c3ddc6 -r 3fe265729ca7 ipxe/stuff/ipxe.cmd --- a/ipxe/stuff/ipxe.cmd Thu Feb 01 15:51:03 2018 +0100 +++ b/ipxe/stuff/ipxe.cmd Thu Feb 01 20:06:00 2018 +0100 @@ -1,14 +1,15 @@ #!ipxe set menu-timeout 3000 -dhcp && console --picture http://mirror.slitaz.org/pxe/ipxe/slitaz.png || +dhcp && isset ${filename} && autoboot || +console --picture http://mirror.slitaz.org/pxe/ipxe/slitaz.png || :menu menu SliTaz net boot menu item --key b boot Local boot item --gap item --gap Network boot -item --key l lan Your PXE boot ${filename} +isset ${filename} && item --key l lan Your PXE boot ${filename} item --key w web SliTaz WEB boot item --key r rolling SliTaz development version item --gap diff -r 17a7f1c3ddc6 -r 3fe265729ca7 xfce4-whiskermenu-plugin/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xfce4-whiskermenu-plugin/receipt Thu Feb 01 20:06:00 2018 +0100 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="xfce4-whiskermenu-plugin" +VERSION="1.7.5" +CATEGORY="x-window" +SHORT_DESC="An alternate application launcher for Xfce." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="https://gottcode.org/xfce4-whiskermenu-plugin/" +WGET_URL="https://archive.be.xfce.org/src/panel-plugins/$PACKAGE/${VERSION%.*}/$TARBALL" + +DEPENDS="gtk+ libexo garcon xfce4-panel libxfce4ui" +BUILD_DEPENDS="cmake pkg-config gtk+-dev libexo-dev garcon-dev xfce4-panel-dev \ +libxfce4ui-dev" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir build && cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. + make && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/usr $fs/ +}