blob: d97c20e820f302e668d2cfd98ea63f022becdf2e (
plain)
1 # Description: Utilities to access MS-DOS disks without mounting them
2 # URL: https://www.gnu.org/software/mtools/
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4
5 name=mtools
6 version=4.0.40
7 release=1
8 source=(https://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 }
|