libzip - C library for reading, creating, modifying zip archives ChangeLog

HOWTO


# libzip 1.10.1 (2023-08-23)
# =============
# Slackware 14.0: libzip 0.9.3
# Slackware 14.1: libzip 0.10.1
# Slackware 14.2: libzip 1.0.1
# Slackware 15.0: libzip 1.8.0

# Prerequisites:
# CMake
# pkg-config
# Nettle >= 3.0
# OpenSSL or GnuTLS (for AES encryption)
# mbedTLS >= 1.0
# Perl (for the tests)
# zlib >= 1.1.2
# bzip2 (for bzip2-compressed zip archives)
# lzma >= 5.2

# libzip supports OpenSSL as of 1.10.0

# Get it
cd
test -f installed/libzip-1.10.1.tar.xz &&
mv -f installed/libzip-1.10.1.tar.xz .
test ! -f libzip-1.10.1.tar.xz &&
wget https://libzip.org/download/libzip-1.10.1.tar.xz

# Extract it
mkdir -p -m 0700 ~/src
cd ~/src
find -maxdepth 1 -type d -name "libzip-*" -exec rm -r {} \;
tar xJvf ~/libzip-1.10.1.tar.xz
cd libzip-1.10.1
test $UID = 0 && chown -R root:root .

# Read ./README.md and ./INSTALL.md, if upgrading NEWS.md

# Create a build directory
mkdir build
cd build

# Configure the build for 64-bit
test $(uname -m) = 'x86_64' &&
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib64 \
  -DCMAKE_INSTALL_MANDIR=/usr/man ..

# Configure the build for anything else
test $(uname -m) != 'x86_64' &&
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_MANDIR=/usr/man ..

# Build it
make

# Test the build
make test

# Become root to install it
su

# Remove the Slackware package, if there is one
test -x /sbin/removepkg && /sbin/removepkg libzip

# Install it
make install
ldconfig

# Become yourself again
exit

# Save the source for later
cd
mkdir -p -m 0700 installed
rm -f installed/libzip-*.tar.*
mv libzip-1.10.1.tar.xz installed/


# If you ever want to uninstall libzip, this should do it:
cd
su
test -d src/libzip-* &&
( cd src/libzip-* ; cat install_manifest.txt | xargs rm )
( cd /usr/bin ; rm -f zipcmp zipmerge ziptool )
( cd /usr/include ; rm -f zip.h zipconf.h )
( cd /usr/lib ; rm -f libzip.* pkgconfig/libzip.pc )
test -d /usr/lib64 &&
( cd /usr/lib64 ; rm -f libzip.* pkgconfig/libzip.pc )
( cd /usr/man/man1 ; rm -f zipcmp.1 zipmerge.1 ziptool.1 )
( cd /usr/man/man3 ; rm -f ZIP_SOURCE_GET_ARGS.3 libzip.3 zip_*.3 )
ldconfig
exit
find ~/src -maxdepth 1 -type d -name "libzip-*" -exec rm -r {} \;
rm -f ~/installed/libzip-*.tar.*

List of HOWTOs

Web page itself last updated: 2023-12-20 8:06pm (EDT -0400)
HOWTO last updated: 2023-09-25 6:40pm
Copyright © 2001-2024 Jason Englander. All Rights reserved.
[HTML5]