opt/mtools/Pkgfile

23 lines
552 B
Plaintext
Raw Normal View History

2010-08-31 09:31:40 +00:00
# Description: Utilities to access MS-DOS disks without mounting them
# URL: https://www.gnu.org/software/mtools/
2018-01-03 11:24:34 -06:00
# Maintainer: Matt Housh, jaeger at crux dot ninja
2010-08-31 09:31:40 +00:00
name=mtools
2023-03-26 12:37:03 -05:00
version=4.0.43
2020-06-01 09:23:55 -05:00
release=1
2021-12-13 20:59:14 -06:00
source=(https://ftp.gnu.org/gnu/mtools/$name-$version.tar.bz2)
2010-08-31 09:31:40 +00:00
build() {
cd $name-$version
2010-08-31 09:31:40 +00:00
./configure --prefix=/usr \
--sysconfdir=/etc \
--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
2016-01-20 23:09:06 +00:00
rm -f $PKG/usr/share/man/man1/floppyd*
2010-08-31 09:31:40 +00:00
}