jobextra/libxml2/PKGBUILD

86 lines
2.3 KiB
Bash
Raw Normal View History

2022-03-20 13:34:07 +01:00
#!/usr/bin/bash
# JOBoRun : Jwm OpenBox Obarun RUNit
# Maintainer : Joe Bo Run <joborun@disroot.org>
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobextra/$pkgname"
# Website : https://pozol.eu
#-----------------------------------------| DESCRIPTION |---------------------------------------
pkgname=libxml2
pkgver=2.9.13
pkgrel=02
2022-03-20 13:34:07 +01:00
pkgdesc='XML parsing library, version 2'
url='http://www.xmlsoft.org/'
arch=(x86_64)
groups=()
depends=(zlib readline ncurses xz icu)
makedepends=(python git)
optdepends=('python: Python bindings')
provides=(libxml2.so)
#_commit=b48e77cf4f6fa0792c5f4b639707a2b0675e461b # tags/v2.9.12^0
_commit=a075d256fd9ff15590b86d981b75a50ead124fca # tags/v2.9.13^0
source=("git+https://gitlab.gnome.org/GNOME/libxml2.git#commit=$_commit"
libxml2-2.9.8-python3-unicode-errors.patch
# no-fuzz.patch # Do not run fuzzing tests
no-fuzz.diff
https://www.w3.org/XML/Test/xmlts20130923.tar.gz)
pkgver() {
cd $pkgname
git describe --tags | sed 's/-rc/rc/;s/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
mkdir build
# Use xmlconf from conformance test suite
ln -s xmlconf build/xmlconf
cd libxml2
# https://src.fedoraproject.org/rpms/libxml2/tree/rawhide
git apply -3 ../libxml2-2.9.8-python3-unicode-errors.patch
# Do not run fuzzing tests
git apply -3 ../no-fuzz.diff
autoreconf -fiv
}
build() (
cd build
../$pkgname/configure \
--prefix=/usr \
--with-threads \
--with-history \
--with-python=/usr/bin/python \
--with-icu
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
make
find doc -type f -exec chmod 0644 {} +
)
check() {
make -C build check
}
package() {
make -C build DESTDIR="$pkgdir" install
python -m compileall -d /usr/lib "$pkgdir/usr/lib"
python -O -m compileall -d /usr/lib "$pkgdir/usr/lib"
install -Dm 644 build/COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
}
#---- license gpg-key sha256sums ----
license=(MIT)
sha256sums=(SKIP
37eb81a8ec6929eed1514e891bff2dd05b450bcf0c712153880c485b7366c17c # libxml2-2.9.8-python3-unicode-errors.patch
# 163655aba312c237a234a82d64b71a65bd9d1d901e176d443e3e3ac64f3b1b32 # no-fuzz.patch
3fc010d8c42b93e6d6f1fca6b598a561e9d2c8780ff3ca0c76a31efabaea404f # no-fuzz.diff
9b61db9f5dbffa545f4b8d78422167083a8568c59bd1129f94138f936cf6fc1f) # xmlts20130923.tar.gz