blob: c995e0a09868d116ab40e85794c159e422741884 (
plain)
1 # Description: Utilities to access MS-DOS disks without mounting them
2 # URL: http://mtools.linux.lu/
3 # Maintainer: Jose V Beneyto, sepen at crux dot nu
4 # Packager: Jose V Beneyto, sepen at crux dot nu
5 # Depends on:
6
7 name=mtools
8 version=4.0.18
9 release=2
10 source=(ftp://ftp.gnu.org/gnu/mtools/$name-$version.tar.bz2)
11
12 build() {
13 cd $name-$version
14
15 ./configure --prefix=/usr \
16 --sysconfdir=/etc \
17 --disable-floppyd
18
19 make
20 sed -i Makefile -e 's|install-scripts install-info|install-scripts|'
21 make -j1 prefix=$PKG/usr install
22
23 rm -f $PKG/usr/share/man/man1/floppyd*
24 }
|