wok view dosfstools/receipt @ rev 19794

zerofree: add -lcom_err
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Feb 23 11:10:10 2017 +0100 (2017-02-23)
parents 236ff5a1c6f0
children 401224c936cc
line source
1 # SliTaz package receipt.
3 PACKAGE="dosfstools"
4 VERSION="3.0.28"
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="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL"
12 HOST_ARCH="i486 arm"
14 BUILD_DEPENDS="wget"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 make
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/sbin
26 cp -a $src/mkfs.fat $fs/sbin
27 cp -a $src/fsck.fat $fs/sbin
28 cp -a $src/fatlabel $fs/sbin
29 }