wok-6.x rev 143
Add : dosfstools (Gparted FAT16/32 support)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Mon Jan 21 22:46:40 2008 +0100 (2008-01-21) |
parents | 7bc680600ecd |
children | 517c105b1c0f |
files | dosfstools/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dosfstools/receipt Mon Jan 21 22:46:40 2008 +0100 1.3 @@ -0,0 +1,26 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="dosfstools" 1.7 +VERSION="2.11" 1.8 +CATEGORY="extra" 1.9 +SHORT_DESC="Tools to creat and check dos filesystems." 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +TARBALL="$PACKAGE-$VERSION.src.tar.gz" 1.12 +WEB_SITE="ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/" 1.13 +WGET_URL="ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/$TARBALL" 1.14 + 1.15 +# Rules to configure and make the package. 1.16 +compile_rules() 1.17 +{ 1.18 + cd $src 1.19 + make 1.20 +} 1.21 + 1.22 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.23 +genpkg_rules() 1.24 +{ 1.25 + mkdir -p $fs/sbin 1.26 + cp -a $src/mkdosfs/mkdosfs $fs/sbin 1.27 + cp -a $src/dosfsck/dosfsck $fs/sbin 1.28 + strip -s $fs/sbin/* 1.29 +}