wok diff tazpanel/receipt @ rev 10263
Up: gnustep-make to 2.6.0.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sat May 21 04:44:08 2011 +0000 (2011-05-21) |
parents | |
children | 105fefc7657f |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/tazpanel/receipt Sat May 21 04:44:08 2011 +0000 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 +}