wok view cookutils/receipt @ rev 12839

dropbear: make it cross-compile for ARM (had to disable zlib)
author Christophe Lincoln <pankso@slitaz.org>
date Wed May 23 01:32:48 2012 +0200 (2012-05-23)
parents 5ff40667cd59
children dfdb3fd470af
line source
1 # SliTaz package receipt.
3 PACKAGE="cookutils"
4 VERSION="2.0"
5 CATEGORY="base-system"
6 SHORT_DESC="SliTaz packages builder new generation."
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"
11 TAGS="slitaz"
12 HOST_ARCH="i486 arm"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 mkdir -p $DESTDIR/usr/bin $DESTDIR/etc/slitaz
19 make DESTDIR=$DESTDIR install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs
26 cp -a $install/* $fs
27 # Daemon goes in cookutils-deamon
28 rm -rf $fs/etc/init.d
29 }