diff options
author | Barry J. Grundy <bgrundyat> | 2022-05-20 00:50:00 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-05-21 08:25:17 +0700 |
commit | 54e541739ce9027822fc5d2c6056fd7d3140d4b5 (patch) | |
tree | 84f8e074be3d5d7f4ded6f12822ecb3e1e4484bf /libraries/libfsapfs | |
parent | 05bd200da9f82a2182b43b3338d8631448ea51b0 (diff) |
libraries/libfsapfs: Updated for version 20210424.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/libfsapfs')
-rw-r--r-- | libraries/libfsapfs/README | 16 | ||||
-rw-r--r-- | libraries/libfsapfs/libfsapfs.SlackBuild | 20 | ||||
-rw-r--r-- | libraries/libfsapfs/libfsapfs.info | 6 |
3 files changed, 26 insertions, 16 deletions
diff --git a/libraries/libfsapfs/README b/libraries/libfsapfs/README index 8c34d3dd0580..95b00aeaf37a 100644 --- a/libraries/libfsapfs/README +++ b/libraries/libfsapfs/README @@ -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 diff --git a/libraries/libfsapfs/libfsapfs.SlackBuild b/libraries/libfsapfs/libfsapfs.SlackBuild index 093b09d753f0..ec28b66c130f 100644 --- a/libraries/libfsapfs/libfsapfs.SlackBuild +++ b/libraries/libfsapfs/libfsapfs.SlackBuild @@ -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 diff --git a/libraries/libfsapfs/libfsapfs.info b/libraries/libfsapfs/libfsapfs.info index d02c23475331..eef8bcb9b954 100644 --- a/libraries/libfsapfs/libfsapfs.info +++ b/libraries/libfsapfs/libfsapfs.info @@ -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="" |