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