2010-08-31 09:31:40 +00:00
|
|
|
# Description: Utilities to access MS-DOS disks without mounting them
|
|
|
|
# URL: http://mtools.linux.lu/
|
|
|
|
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
|
|
|
# Packager: Jose V Beneyto, sepen at crux dot nu
|
|
|
|
# Depends on:
|
|
|
|
|
|
|
|
name=mtools
|
2013-01-10 01:52:36 +01:00
|
|
|
version=4.0.18
|
2011-07-01 09:20:24 +02:00
|
|
|
release=1
|
2010-08-31 09:31:40 +00:00
|
|
|
source=(ftp://ftp.gnu.org/gnu/mtools/$name-$version.tar.bz2)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2011-03-07 23:18:36 +01:00
|
|
|
|
2010-08-31 09:31:40 +00:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
2011-04-18 17:05:17 +02:00
|
|
|
--mandir=$PKG/usr/man \
|
2011-03-07 23:18:36 +01:00
|
|
|
--disable-floppyd
|
|
|
|
|
2010-08-31 09:31:40 +00:00
|
|
|
make
|
|
|
|
sed -i Makefile -e 's|install-scripts install-info|install-scripts|'
|
|
|
|
make -j1 prefix=$PKG/usr install
|
2011-04-18 18:55:30 +02:00
|
|
|
|
|
|
|
rm -f $PKG/usr/man/man1/floppyd*
|
2010-08-31 09:31:40 +00:00
|
|
|
}
|