2018-04-26 15:08:39 +02:00
|
|
|
# Description: FUSE module and Utilities for the exFAT filesystem
|
2023-03-03 11:47:30 +01:00
|
|
|
# URL: https://github.com/relan/exfat
|
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
|
|
# Depends on: fuse3
|
2018-04-26 15:08:39 +02:00
|
|
|
|
|
|
|
name=exfat-utils
|
2023-03-03 11:47:30 +01:00
|
|
|
version=1.4.0
|
2018-04-26 15:08:39 +02:00
|
|
|
release=1
|
|
|
|
source=(https://github.com/relan/exfat/archive/v${version}/exfat-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
2023-03-03 11:47:30 +01:00
|
|
|
cd exfat-$version
|
|
|
|
autoreconf -i
|
|
|
|
./configure --prefix=/usr --sbindir=/sbin
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2018-04-26 15:08:39 +02:00
|
|
|
}
|