forked from ports/contrib
25 lines
624 B
Plaintext
25 lines
624 B
Plaintext
# Description: exfat filesystem implementation
|
|
# URL: http://code.google.com/p/exfat/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: fuse
|
|
|
|
name=fuse-exfat
|
|
version=1.3.0
|
|
release=1
|
|
source=(https://github.com/relan/exfat/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build () {
|
|
cd exfat-$version
|
|
aclocal
|
|
autoheader
|
|
automake --force-missing --add-missing
|
|
autoconf
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sbindir=/sbin
|
|
make CCFLAGS="$CFLAGS \
|
|
-std=c99" LINKFLAGS="$LDFLAGS" \
|
|
install DESTDIR=$PKG
|
|
install -D -m 644 fuse/mount.exfat-fuse.8 "$PKG/usr/share/man/man8/mount.exfat-fuse.8"
|
|
}
|