blob: b8fbdb5201e6139b40ccf7f6e8d174ff4f79ff43 (
plain)
1 # Description: FUSE module and Utilities for the exFAT filesystem
2 # URL: https://github.com/relan/exfat
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: fuse
5
6 name=exfat-utils
7 version=1.3.0
8 release=1
9 source=(https://github.com/relan/exfat/archive/v${version}/exfat-$version.tar.gz)
10
11 build() {
12 cd exfat-$version
13 autoreconf -i
14 ./configure --prefix=/usr --sbindir=/sbin
15 make
16 make DESTDIR=$PKG install
17 }
|