1
0
forked from ports/opt

exfatprogs: initial release, version 1.0.2

This commit is contained in:
Juergen Daubert 2020-04-25 14:23:38 +02:00
parent 0efa5e9f16
commit b351ffb14a
3 changed files with 31 additions and 0 deletions

4
exfatprogs/.footprint Normal file
View File

@ -0,0 +1,4 @@
drwxr-xr-x root/root sbin/
-rwxr-xr-x root/root sbin/fsck.exfat
-rwxr-xr-x root/root sbin/label.exfat
-rwxr-xr-x root/root sbin/mkfs.exfat

5
exfatprogs/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/TjgfqxyGwy/ttdJECgkbBgNoxc7qQ7tNFO1saD/zG0esAqzEHg5qsXcXq4T6x7PXAvExGUgHH43K0ZvEIwvwwA=
SHA256 (Pkgfile) = 5eb6ffb2d4ccb2790ea817dfad5bfb3ac7c5b7c6f8c6f8a6fb62e2709f907cc6
SHA256 (.footprint) = d24e9f493970bc3ca5833b75df23ec51327241ddb405e04609c0b4a4e3768f5a
SHA256 (exfatprogs-1.0.2.tar.gz) = e7f14f32dd67601ff42717f432093a400de878774796f6f1684fb9dbf0d499e1

22
exfatprogs/Pkgfile Normal file
View File

@ -0,0 +1,22 @@
# Description: Userspace utilities for the exfat filesystem kernel module
# URL: https://github.com/exfatprogs/exfatprogs
# Maintainer: Juergen Daubert, jue at crux dot nu
name=exfatprogs
version=1.0.2
release=1
source=(https://github.com/exfatprogs/exfatprogs/archive/$version/$name-$version.tar.gz)
build() {
cd $name-$version
# don't install the library
sed -r 's/^lib_(LTLIBRARIES)/noinst_\1/' -i lib/Makefile.am
./autogen.sh
./configure --sbindir=/sbin
make
make DESTDIR=$PKG install
}