wok annotate 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
rev   line source
pankso@143 1 # SliTaz package receipt.
pankso@143 2
pankso@143 3 PACKAGE="dosfstools"
slaxemulator@15842 4 VERSION="3.0.25"
pankso@202 5 CATEGORY="system-tools"
slaxemulator@6324 6 SHORT_DESC="Tools to create and check dos filesystems."
pankso@143 7 MAINTAINER="pankso@slitaz.org"
pascal@15579 8 LICENSE="GPL3"
slaxemulator@15842 9 TARBALL="$PACKAGE-$VERSION.tar.xz"
slaxemulator@6324 10 WEB_SITE="http://www.daniel-baumann.ch/software/dosfstools"
pascal@15844 11 WGET_URL="http://daniel-baumann.ch/files/software/$PACKAGE/$TARBALL"
pankso@143 12
pankso@143 13 # Rules to configure and make the package.
pankso@143 14 compile_rules()
pankso@143 15 {
pankso@143 16 cd $src
pankso@143 17 make
pankso@143 18 }
pankso@143 19
pankso@143 20 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@143 21 genpkg_rules()
pankso@143 22 {
pankso@143 23 mkdir -p $fs/sbin
pascal@15845 24 cp -a $src/mkfs.fat $fs/sbin
pascal@15845 25 cp -a $src/fsck.fat $fs/sbin
pascal@15845 26 cp -a $src/fatlabel $fs/sbin
pankso@143 27 }