wok view mtools/receipt @ rev 12821

gmp: dont build for ARM anymore...
author Christophe Lincoln <pankso@slitaz.org>
date Mon May 21 23:58:06 2012 +0200 (2012-05-21)
parents 014c4d6d0533
children 3032e1d97d20
line source
1 # SliTaz package receipt.
3 PACKAGE="mtools"
4 VERSION="4.0.16"
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 BUILD_DEPENDS="texinfo"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://mtools.linux.lu/"
12 WGET_URL="http://mtools.linux.lu/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 # Patching Makefile to avoid error on makeinfo
18 cd $src
19 ./configure --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make MYCFLAGS="-g -O2 -wall" mtools &&
22 make -j1 MYCFLAGS="-g -O2 -wall" install DESTDIR=$DESTDIR
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 }