summaryrefslogtreecommitdiff
path: root/mtools/Pkgfile
blob: f7550535929cba9a4c12e18560abd368502f619a (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.41
    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 }

Generated by cgit