wok view mtools/receipt @ rev 2033

get-flash-plugin: Fix crash issue - Add DEPENDS on curl
author Julien Rabier <taziden@slitaz.org>
date Sat Jan 10 01:23:09 2009 +0100 (2009-01-10)
parents
children cde7fa93f1d6
line source
1 # SliTaz package receipt.
3 PACKAGE="mtools"
4 VERSION="3.9.11"
5 CATEGORY="system-tools"
6 SHORT_DESC="Access MS-DOS disk from *nix."
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS=""
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://mtools.linux.lu/"
11 WGET_URL="http://mtools.linux.lu/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 # Patching Makefile to avoid error on makeinfo
17 cd $src
18 ./configure --prefix=/usr \
19 $CONFIGURE_ARGS &&
20 patch -p1 -i ../stuff/mtools_makefile.patch &&
21 make mtools &&
22 make install DESTDIR=$PWD/_pkg
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/bin $fs/usr
30 }