wok-current rev 9632
Add tazpanel (1.0) - And here is the next generation of slitaz home made tools!
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Tue Apr 26 15:03:36 2011 +0200 (2011-04-26) |
parents | 90aec7fc5db8 |
children | 2a0283b9fe05 |
files | tazpanel/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/tazpanel/receipt Tue Apr 26 15:03:36 2011 +0200 1.3 @@ -0,0 +1,29 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="tazpanel" 1.7 +VERSION="1.0" 1.8 +CATEGORY="system-tools" 1.9 +SHORT_DESC="SliTaz administration and configuration panel." 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.12 +WEB_SITE="http://www.slitaz.org/" 1.13 +WGET_URL="http://mirror.slitaz.org/sources/$PACKAGE/$TARBALL" 1.14 + 1.15 +DEPENDS="busybox" 1.16 +BUILD_DEPENDS="" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + cd $src 1.22 + make DESTDIR=$WOK/$PACKAGE/install install 1.23 +} 1.24 + 1.25 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.26 +genpkg_rules() 1.27 +{ 1.28 + mkdir -p $fs/etc/init.d 1.29 + cp -a $_pkg/* $fs 1.30 + # Init script use tazpanel cmdline 1.31 + cd $fs/etc/init.d && ln -s ../../usr/bin/tazpanel . 1.32 +}