wok view tazpanel/receipt @ rev 9854

tint2: fix bdeps
author Christophe Lincoln <pankso@slitaz.org>
date Mon May 16 12:24:37 2011 +0200 (2011-05-16)
parents
children 105fefc7657f
line source
1 # SliTaz package receipt.
3 PACKAGE="tazpanel"
4 VERSION="1.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="SliTaz administration and configuration panel."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.slitaz.org/"
10 WGET_URL="http://mirror.slitaz.org/sources/$PACKAGE/$TARBALL"
12 DEPENDS="busybox"
13 BUILD_DEPENDS=""
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 make DESTDIR=$WOK/$PACKAGE/install install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/etc/init.d
26 cp -a $_pkg/* $fs
27 # Init script use tazpanel cmdline
28 cd $fs/etc/init.d && ln -s ../../usr/bin/tazpanel .
29 }