blob: 6301a719792f1915761beb7154b80afa3aa0f947 (
plain)
1 # Description: exfat filesystem implementation
2 # URL: http://code.google.com/p/exfat/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: fuse
5
6 name=fuse-exfat
7 version=1.3.0
8 release=1
9 source=(https://github.com/relan/exfat/archive/v$version/$name-$version.tar.gz)
10
11 build () {
12 cd exfat-$version
13 aclocal
14 autoheader
15 automake --force-missing --add-missing
16 autoconf
17 ./configure \
18 --prefix=/usr \
19 --sbindir=/sbin
20 make CCFLAGS="$CFLAGS \
21 -std=c99" LINKFLAGS="$LDFLAGS" \
22 install DESTDIR=$PKG
23 install -D -m 644 fuse/mount.exfat-fuse.8 "$PKG/usr/share/man/man8/mount.exfat-fuse.8"
24 }
|