libxslt - XSLT (XML conversion) library ChangeLog

HOWTO


# libxslt 1.1.39 (2023-11-16)
# ==============
# Slackware 14.0: libxslt 1.1.26
# Slackware 14.1: libxslt 1.1.28
# Slackware 14.2: libxslt 1.1.29
# Slackware 15.0: libxslt 1.1.34

# Prerequisites:
# pkg-config >= 0.9.0
# Perl
# Python
# tar
# libgcrypt (optional)

# If you want python bindings, make sure libxml2 was built with
# --with-python

# If you're replacing a source installed libxslt that was installed under
# /usr/local, cd into it's source and run 'make uninstall' (as root) before
# proceeding here.  If you can't for some reason, run this to at least clear
# out the old shared library files and includes:
su
rm -f /usr/local/lib/libexslt.* /usr/local/lib/libxslt.* \
/usr/local/lib/libxsltbreakpoint.*
test -d /usr/local/include/libxslt && rm -r /usr/local/include/libxslt
test -d /usr/local/include/libexslt && rm -r /usr/local/include/libexslt
exit

# GNOME Discourse: Libxslt 1.1.39 released
# Release notes v1.1.39
# libxslt downloads
# GitLab libxslt Releases
# libxslt FAQ

# Get the source tarball
cd
test -f installed/libxslt-1.1.39.tar.xz &&
mv installed/libxslt-1.1.39.tar.xz .
test ! -f libxslt-1.1.39.tar.xz &&
wget https://download.gnome.org/sources/libxslt/1.1/libxslt-1.1.39.tar.xz

# Verify tarball w/ sha256sum:
echo "2a20ad621148339b0759c4d4e96719362dee64c9a096dbba625ba053846349\
f0  libxslt-1.1.39.tar.xz" | sha256sum -c

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

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

# Configure the build for 64-bit
test $(uname -m) = 'x86_64' &&
./configure --prefix=/usr --docdir=/usr/doc/libxslt-1.1.39 \
--libdir=/usr/lib64 --mandir=/usr/man

# Configure the build for anything else
test $(uname -m) != 'x86_64' &&
./configure --prefix=/usr --docdir=/usr/doc/libxslt-1.1.39 --mandir=/usr/man

# Build it
make

# Check the build
make check

# Become root to install it
su

# Remove the Slackware package
test -x /sbin/removepkg && /sbin/removepkg libxslt

# Remove old source-installed docs
find /usr/doc/ -maxdepth 1 -type d -name "libxslt-*" -exec rm -r {} \;

# Install it
make install
ldconfig

# Make sure your non-root user can remove the source later
chown -R $(logname) .
chmod -R u+w .

# Become yourself again
exit

# Save the tarball for later
cd
mkdir -p -m 0700 installed
rm -f installed/libxslt-*.tar.*
mv libxslt-1.1.39.tar.xz installed/

List of HOWTOs

Web page itself last updated: 2023-12-20 8:06pm (EDT -0400)
HOWTO last updated: 2024-04-29 12:14am
Copyright © 2001-2024 Jason Englander. All Rights reserved.
[HTML5]