mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
18 lines
402 B
Plaintext
18 lines
402 B
Plaintext
# description : Utilities to access MS-DOS disks without mounting them
|
|
|
|
name=mtools
|
|
version=4.0.43
|
|
release=1
|
|
source="ftp://ftp.gnu.org/gnu/mtools/$name-$version.tar.bz2"
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--disable-floppyd
|
|
make
|
|
sed -i Makefile -e 's|install-scripts install-info|install-scripts|'
|
|
make -j1 prefix=$PKG/usr install
|
|
}
|