wok view dosfstools/receipt @ rev 15845

dosfstools: update genpkg_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 27 11:23:53 2014 +0000 (2014-01-27)
parents 085ef78705d6
children 236ff5a1c6f0
line source
1 # SliTaz package receipt.
3 PACKAGE="dosfstools"
4 VERSION="3.0.25"
5 CATEGORY="system-tools"
6 SHORT_DESC="Tools to create and check dos filesystems."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://www.daniel-baumann.ch/software/dosfstools"
11 WGET_URL="http://daniel-baumann.ch/files/software/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 make
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/sbin
24 cp -a $src/mkfs.fat $fs/sbin
25 cp -a $src/fsck.fat $fs/sbin
26 cp -a $src/fatlabel $fs/sbin
27 }