libraries/libfsapfs: Updated for version 20210424.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
05bd200da9
commit
54e541739c
|
@ -1,6 +1,9 @@
|
|||
libfsapfs (libYAL APFS library)
|
||||
libfsapfs is a library to access the Apple File System (APFS).
|
||||
|
||||
Library to access the Apple File System (APFS)
|
||||
Project information:
|
||||
|
||||
* Status: experimental
|
||||
* Licence: LGPLv3+
|
||||
|
||||
Read-only supported APFS formats:
|
||||
|
||||
|
@ -11,10 +14,17 @@ Supported APFS format features:
|
|||
* ZLIB (DEFLATE) compression
|
||||
* LZVN compression
|
||||
* encryption
|
||||
* extended attributes
|
||||
|
||||
Unsupported APFS format features:
|
||||
|
||||
* APFS version 1
|
||||
* Fusion drive (NX_INCOMPAT_FUSION)
|
||||
* snapshots
|
||||
* LZFSE compression, compression methods 11 and 12
|
||||
* "uncompressed", compression methods 1, 9 and 10
|
||||
* snapshots
|
||||
* T2 encryption
|
||||
|
||||
For more information see:
|
||||
|
||||
* Project documentation: https://github.com/libyal/libfsapfs/wiki/Home
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for libfsapfs
|
||||
|
||||
# Copyright 2019 Barry J. Grundy (bgrundy<at>linuxleo.com)
|
||||
# Copyright 2019-2022 Barry J. Grundy (bgrundy<at>linuxleo.com)
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -21,21 +21,21 @@
|
|||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
# New Submission v20181215 Jan 2019
|
||||
#
|
||||
# Updated to v20210424 May 2022
|
||||
|
||||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=libfsapfs
|
||||
VERSION=${VERSION:-20181215}
|
||||
VERSION=${VERSION:-20210424}
|
||||
STATUS=${STATUS:-experimental}
|
||||
BUILD=${BUILD:-2}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
|
@ -53,8 +53,8 @@ TMP=${TMP:-/tmp/SBo}
|
|||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
|
@ -91,7 +91,7 @@ CXXFLAGS="$SLKCFLAGS -std=gnu89" \
|
|||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
--disable-static \
|
||||
--enable-python \
|
||||
--enable-python3 \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
||||
make
|
||||
|
@ -101,7 +101,7 @@ find $PKG/usr/man -type f -exec gzip -9 {} \;
|
|||
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -ar ABOUT-NLS AUTHORS ChangeLog COPYING INSTALL README $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -ar ABOUT-NLS AUTHORS ChangeLog COPYING README $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
rm -f $PKG/usr/lib*/*.la
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="libfsapfs"
|
||||
VERSION="20181215"
|
||||
VERSION="20210424"
|
||||
HOMEPAGE="https://github.com/libyal/libfsapfs"
|
||||
DOWNLOAD="https://slackware.uk/sbosrcarch/by-md5/5/3/5340363f14e89bc0542084ff7e23e30d/libfsapfs-experimental-20181215.tar.gz"
|
||||
MD5SUM="5340363f14e89bc0542084ff7e23e30d"
|
||||
DOWNLOAD="https://linuxleo.com/Source/libfsapfs-experimental-20210424.tar.gz"
|
||||
MD5SUM="b074b082b8c97528cd351d383305ec79"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in New Issue