wok diff dosfstools/receipt @ rev 169

Typo and deps for tcpdump
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jan 30 00:08:43 2008 +0100 (2008-01-30)
parents
children 4615573735e2
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dosfstools/receipt	Wed Jan 30 00:08:43 2008 +0100
     1.3 @@ -0,0 +1,26 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="dosfstools"
     1.7 +VERSION="2.11"
     1.8 +CATEGORY="extra"
     1.9 +SHORT_DESC="Tools to creat and check dos filesystems."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +TARBALL="$PACKAGE-$VERSION.src.tar.gz"
    1.12 +WEB_SITE="ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/"
    1.13 +WGET_URL="ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/$TARBALL"
    1.14 +
    1.15 +# Rules to configure and make the package.
    1.16 +compile_rules()
    1.17 +{
    1.18 +	cd $src
    1.19 +	make
    1.20 +}
    1.21 +
    1.22 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.23 +genpkg_rules()
    1.24 +{
    1.25 +	mkdir -p $fs/sbin
    1.26 +	cp -a $src/mkdosfs/mkdosfs $fs/sbin
    1.27 +	cp -a $src/dosfsck/dosfsck $fs/sbin
    1.28 +	strip -s $fs/sbin/*
    1.29 +}