wok view mtools/receipt @ rev 1947

nscd: chmod +x /etc/init.d/nscd
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Dec 28 21:46:02 2008 +0000 (2008-12-28)
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 }