wok annotate 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
rev   line source
pankso@143 1 # SliTaz package receipt.
pankso@143 2
pankso@143 3 PACKAGE="dosfstools"
pankso@143 4 VERSION="2.11"
pankso@202 5 CATEGORY="system-tools"
pankso@143 6 SHORT_DESC="Tools to creat and check dos filesystems."
pankso@143 7 MAINTAINER="pankso@slitaz.org"
pankso@143 8 TARBALL="$PACKAGE-$VERSION.src.tar.gz"
pankso@143 9 WEB_SITE="ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/"
pankso@143 10 WGET_URL="ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/$TARBALL"
pankso@143 11
pankso@143 12 # Rules to configure and make the package.
pankso@143 13 compile_rules()
pankso@143 14 {
pankso@143 15 cd $src
pankso@143 16 make
pankso@143 17 }
pankso@143 18
pankso@143 19 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@143 20 genpkg_rules()
pankso@143 21 {
pankso@143 22 mkdir -p $fs/sbin
pankso@143 23 cp -a $src/mkdosfs/mkdosfs $fs/sbin
pankso@143 24 cp -a $src/dosfsck/dosfsck $fs/sbin
pankso@143 25 strip -s $fs/sbin/*
pankso@143 26 }