![](https://secure.gravatar.com/avatar/df8330968b6df8cd1c1942c5fb4b720c.jpg?s=120&d=mm&r=g)
commit 8a758f263547300f2b35a118ac585d9284c8536f Author: Tim Biermann <tbier@posteo.de> Date: Sun Jun 7 14:05:21 2020 +0000 fuse-exfat: initial commit, version 1.3.0 diff --git a/fuse-exfat/.footprint b/fuse-exfat/.footprint new file mode 100644 index 000000000..6c8b1d9f3 --- /dev/null +++ b/fuse-exfat/.footprint @@ -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 diff --git a/fuse-exfat/.signature b/fuse-exfat/.signature new file mode 100644 index 000000000..acc3ea569 --- /dev/null +++ b/fuse-exfat/.signature @@ -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 diff --git a/fuse-exfat/Pkgfile b/fuse-exfat/Pkgfile new file mode 100644 index 000000000..6301a7197 --- /dev/null +++ b/fuse-exfat/Pkgfile @@ -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" +}