summaryrefslogtreecommitdiff
path: root/dosfstools/Pkgfile
blob: d6ed96e05b6f432ea506ba89ec00c6b5928fe8ef (plain)
    1 # Description: tools for creating and checking DOS filesystems in linux
    2 # URL: https://github.com/dosfstools/dosfstools
    3 # Maintainer: Matt Housh, jaeger at crux dot ninja
    4 
    5 name=dosfstools
    6 version=4.2
    7 release=1
    8 source=(https://github.com/dosfstools/dosfstools/releases/download/v$version/$name-$version.tar.gz)
    9 
   10 build() {
   11   cd $name-$version
   12 
   13   ./configure --prefix=/usr \
   14               --sbindir=/sbin \
   15               --enable-compat-symlinks
   16 
   17   make
   18   make DESTDIR=$PKG install
   19 
   20   rm -r $PKG/usr/share/doc
   21 }

Generated by cgit