# HG changeset patch # User Christophe Lincoln # Date 1303823016 -7200 # Node ID 827373a8eb2df0edb90f5cb0dce9237a2da39fe0 # Parent 90aec7fc5db85b46f36309564bc6b500abc3270b Add tazpanel (1.0) - And here is the next generation of slitaz home made tools! diff -r 90aec7fc5db8 -r 827373a8eb2d tazpanel/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tazpanel/receipt Tue Apr 26 15:03:36 2011 +0200 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="tazpanel" +VERSION="1.0" +CATEGORY="system-tools" +SHORT_DESC="SliTaz administration and configuration panel." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.slitaz.org/" +WGET_URL="http://mirror.slitaz.org/sources/$PACKAGE/$TARBALL" + +DEPENDS="busybox" +BUILD_DEPENDS="" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + make DESTDIR=$WOK/$PACKAGE/install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/etc/init.d + cp -a $_pkg/* $fs + # Init script use tazpanel cmdline + cd $fs/etc/init.d && ln -s ../../usr/bin/tazpanel . +}