1
0
forked from ports/opt

exfatprogs: update to 1.1.0

This commit is contained in:
Juergen Daubert 2021-02-15 15:03:09 +01:00
parent 2a9e7826ba
commit 1ec8561b87
3 changed files with 16 additions and 14 deletions

View File

@ -1,4 +1,6 @@
drwxr-xr-x root/root sbin/
-rwxr-xr-x root/root sbin/dump.exfat
-rwxr-xr-x root/root sbin/exfatlabel
-rwxr-xr-x root/root sbin/fsck.exfat
-rwxr-xr-x root/root sbin/mkfs.exfat
-rwxr-xr-x root/root sbin/tune.exfat
@ -6,6 +8,8 @@ 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/dump.exfat.8.gz
-rw-r--r-- root/root usr/share/man/man8/exfatlabel.8.gz
-rw-r--r-- root/root usr/share/man/man8/fsck.exfat.8.gz
-rw-r--r-- root/root usr/share/man/man8/mkfs.exfat.8.gz
-rw-r--r-- root/root usr/share/man/man8/tune.exfat.8.gz

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/eyfltBKlZlPmx8OtWs1a/zZXJIKQO+8RQE5OZQSQusxL0tiA3RVamuWm6EXxzeVoHYs9ckihtlSQwGDpeVvEAU=
SHA256 (Pkgfile) = f3232334e76e59d5a37fb6a5735b22570e3c6d6b45a50b0f8f4d0c167bb24cd8
SHA256 (.footprint) = cc6eebb5fcd06a6f411aa2c2237cb02b1d77ca6cca8102a66847498ed90a2c17
SHA256 (exfatprogs-1.0.4.tar.gz) = 3f755d35785a74138348b3a22dfcda5afc8a69e66a6a0c79be48225e6ca321ce
RWSE3ohX2g5d/ZXOdRblBgqIHafO/+Kie1rzwaSWz3kb/RzesKRrY7JwTofqiUQZ0b1gwn9GjmE1UV8lK3HogYWD1xNWZjY+EQU=
SHA256 (Pkgfile) = ba93311c0eecb33a612f04e2ffaa35d0fce1b1a11c186e53efea96fccedd51a3
SHA256 (.footprint) = 69834199c30133ceadab63f3480d7c91e97415bd4208b703a09dae12eeb7f532
SHA256 (exfatprogs-1.1.0.tar.gz) = 88c12a2f9cbe4f12129f3b7fa2cd42f24dbed3f579e61bac2ca699ca79fad4e0

View File

@ -1,18 +1,16 @@
# Description: Userspace utilities for the exfat filesystem kernel module
# URL: https://github.com/exfatprogs/exfatprogs
# Maintainer: Juergen Daubert, jue at crux dot nu
# URL: https://github.com/exfatprogs/exfatprogs
# Maintainer: Juergen Daubert, jue at crux dot nu
name=exfatprogs
version=1.0.4
version=1.1.0
release=1
source=(https://github.com/exfatprogs/exfatprogs/archive/$version/$name-$version.tar.gz)
build() {
cd $name-$version
./autogen.sh
./configure --sbindir=/sbin --mandir=/usr/share/man
make
make DESTDIR=$PKG install
cd $name-$version
./autogen.sh
./configure --prefix=/usr --sbindir=/sbin
make
make DESTDIR=$PKG install
}