# Description: Userspace utilities for the exfat filesystem kernel module
# URL: https://github.com/exfatprogs/exfatprogs
# Maintainer: Juergen Daubert, jue at crux dot nu

name=exfatprogs
version=1.4.2
release=1
source=(https://github.com/exfatprogs/exfatprogs/releases/download/$version/$name-$version.tar.xz)

build() {
    cd $name-$version
    
    CONFIG_SHELL=/bin/bash \
    ./configure \
        --prefix=/usr \
        --sbindir=/sbin \
        --bindir=/bin \
        --libexecdir=/usr/lib/$name
    make
    make DESTDIR=$PKG install
    
    rm -r $PKG/usr/share/doc
}
