fuse-exfat: initial commit, version 1.3.0

This commit is contained in:
Tim Biermann 2020-06-07 14:05:21 +00:00
parent 4686f6b4f0
commit 8a758f2635
3 changed files with 47 additions and 0 deletions

18
fuse-exfat/.footprint Normal file
View File

@ -0,0 +1,18 @@
drwxr-xr-x root/root sbin/
-rwxr-xr-x root/root sbin/dumpexfat
-rwxr-xr-x root/root sbin/exfatfsck
-rwxr-xr-x root/root sbin/exfatlabel
lrwxrwxrwx root/root sbin/fsck.exfat -> exfatfsck
-rwxr-xr-x root/root sbin/mkexfatfs
lrwxrwxrwx root/root sbin/mkfs.exfat -> mkexfatfs
lrwxrwxrwx root/root sbin/mount.exfat -> mount.exfat-fuse
-rwxr-xr-x root/root sbin/mount.exfat-fuse
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man8/
-rw-r--r-- root/root usr/share/man/man8/dumpexfat.8.gz
-rw-r--r-- root/root usr/share/man/man8/exfatfsck.8.gz
-rw-r--r-- root/root usr/share/man/man8/exfatlabel.8.gz
-rw-r--r-- root/root usr/share/man/man8/mkexfatfs.8.gz
-rw-r--r-- root/root usr/share/man/man8/mount.exfat-fuse.8.gz

5
fuse-exfat/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF30IpP0GKtat/VRCzDESZr5LKM3eQjOJPEfZ+o7GrmrWj8BblwzgLATbXqKO2+9+stwXFXRdwocHiJ+jNZmVIPQc=
SHA256 (Pkgfile) = 9e8db5110fbe89b52bfa5137d3a8f0d01b2f397bac710f4c7a6de632a0af5d9b
SHA256 (.footprint) = e1335decfdd21ae8e30774428d8204670a85e0b73d1506ad8ede2c8aeb585ab5
SHA256 (fuse-exfat-1.3.0.tar.gz) = 689bcb4a639acd2d45e6fa0ff455f7f18edb2421d4f4f42909943775adc0e375

24
fuse-exfat/Pkgfile Normal file
View File

@ -0,0 +1,24 @@
# 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"
}