wok view mtools/receipt @ rev 3890

pyvnc2swf: fix wget_url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 13 16:29:41 2009 +0200 (2009-08-13)
parents 41a9f06fb2fa
children 074d1ea59178
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="xorg-libICE xorg-libSM xorg-libX11 xorg-libXau xorg-libXdmcp"
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 }