blob: 59a27d72ab9811a176fbefbd404a1c378ddb6d97 (
plain)
1 # Description: Utilities to access MS-DOS disks without mounting them
2 # URL: http://mtools.linux.lu/
3 # Maintainer: Mark Rosenstand, mark at borkware dot net
4
5 name=mtools
6 version=3.9.11
7 release=1
8 source=(http://mtools.linux.lu/mtools-$version.tar.bz2)
9
10 build() {
11 cd mtools-$version
12 ./configure --prefix=/usr --sysconfdir=/etc
13 make
14 make prefix=$PKG/usr install
15 rm -r $PKG/usr/info
16 }
|