wok view ufiformat/receipt @ rev 14527

Add ufiformat
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 18 00:21:47 2013 +0200 (2013-05-18)
parents
children 9b6bb1d6033f
line source
1 # SliTaz package receipt.
3 PACKAGE="ufiformat"
4 VERSION="0.9.9"
5 CATEGORY="system"
6 SHORT_DESC="Low level (physical) formatting tool on USB-FDD."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.geocities.jp/tedi_world/format_usbfdd_e.html"
10 WGET_URL="http://www.geocities.jp/tedi_world/$TARBALL"
12 DEPENDS="e2fsprogs"
13 BUILD_DEPENDS="e2fsprogs-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }