wok diff tree/receipt @ rev 8615

Fix: replace exit 1 by return 1 in receipts (exit broke cook-list function)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Feb 14 19:09:46 2011 +0100 (2011-02-14)
parents
children 02bbaa9d12ba
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/tree/receipt	Mon Feb 14 19:09:46 2011 +0100
     1.3 @@ -0,0 +1,28 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="tree"
     1.7 +VERSION="1.5.2.1"
     1.8 +CATEGORY="utilities"
     1.9 +SHORT_DESC="Recursive directory listing program"
    1.10 +MAINTAINER="MikeDSmith25@gmail.com"
    1.11 +DEPENDS=""
    1.12 +TARBALL="$PACKAGE-$VERSION.tgz"
    1.13 +WEB_SITE="http://mama.indstate.edu/users/ice/tree/"
    1.14 +WGET_URL="ftp://mama.indstate.edu/linux/tree/$TARBALL"
    1.15 +
    1.16 +# Rules to configure and make the package.
    1.17 +compile_rules()
    1.18 +{
    1.19 +	cd $src
    1.20 +	make
    1.21 +	make BINDIR=$PWD/_pkg/usr/bin MANDIR=$PWD/_pkg/usr/share/man install
    1.22 +}
    1.23 +
    1.24 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.25 +genpkg_rules()
    1.26 +{
    1.27 +	mkdir -p $fs/usr
    1.28 +	cp -a $_pkg/usr/bin $fs/usr
    1.29 +	strip -s $fs/usr/bin/*
    1.30 +}
    1.31 +