wok view dosfstools/receipt @ rev 8374

Fixed fcron again.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Feb 04 00:42:24 2011 +0000 (2011-02-04)
parents 4615573735e2
children 21b80c68de86
line source
1 # SliTaz package receipt.
3 PACKAGE="dosfstools"
4 VERSION="3.0.10"
5 CATEGORY="system-tools"
6 SHORT_DESC="Tools to create and check dos filesystems."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.daniel-baumann.ch/software/dosfstools"
10 WGET_URL="$WEB_SITE/$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 $fs/sbin
24 cp -a $src/dosfsck $fs/sbin
25 cp -a $src/dosfslabel $fs/sbin
26 strip -s $fs/sbin/*
27 }