opt/mtools/Pkgfile

23 lines
552 B
Plaintext
Raw Normal View History

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