wok view dosfstools/receipt @ rev 622

hardinfo: get the right path for lsmod and user id
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 21 00:18:12 2008 +0200 (2008-04-21)
parents 322a833e70f3
children f5889d914299
line source
1 # SliTaz package receipt.
3 PACKAGE="dosfstools"
4 VERSION="2.11"
5 CATEGORY="system-tools"
6 SHORT_DESC="Tools to creat and check dos filesystems."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.src.tar.gz"
9 WEB_SITE="ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/"
10 WGET_URL="ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 make
17 }
19 # Rules to gen a SliTaz package suitable for Tazpkg.
20 genpkg_rules()
21 {
22 mkdir -p $fs/sbin
23 cp -a $src/mkdosfs/mkdosfs $fs/sbin
24 cp -a $src/dosfsck/dosfsck $fs/sbin
25 strip -s $fs/sbin/*
26 }