jobextra/libxml2/PKGBUILD

100 lines
2.4 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 |---------------------------------------
2022-08-29 21:42:04 +02:00
#pkgbase=libxml2
#pkgname=(libxml2 libxml2-docs)
pkgname=libxml2
pkgver=2.10.3
pkgrel=02
pkgdesc="XML C parser and toolkit"
2022-08-28 00:22:53 +02:00
url="https://gitlab.gnome.org/GNOME/libxml2/-/wikis/home"
2022-03-20 13:34:07 +01:00
arch=(x86_64)
2022-08-28 00:22:53 +02:00
depends=(zlib xz icu readline ncurses)
2022-03-20 13:34:07 +01:00
makedepends=(python git)
2022-08-29 21:42:04 +02:00
optdepends=('python: Python bindings')
provides=(libxml2.so)
2022-08-28 00:22:53 +02:00
#options=(debug) ## uncomment this to have the debug pkg produced
_commit=f507d167f1755b7eaea09fb1a44d29aab828b6d1 # tags/v2.10.3^0
2022-03-20 13:34:07 +01:00
source=("git+https://gitlab.gnome.org/GNOME/libxml2.git#commit=$_commit"
libxml2-2.9.8-python3-unicode-errors.patch
no-fuzz.diff
https://www.w3.org/XML/Test/xmlts20130923.tar.gz)
pkgver() {
2022-08-28 00:22:53 +02:00
cd libxml2
git describe --tags | sed 's/-rc/rc/;s/^v//;s/[^-]*-g/r&/;s/-/+/g'
2022-03-20 13:34:07 +01:00
}
prepare() {
2022-08-28 00:22:53 +02:00
cd libxml2
2022-03-20 13:34:07 +01:00
# Use xmlconf from conformance test suite
2022-08-28 00:22:53 +02:00
ln -s ../xmlconf
2022-03-20 13:34:07 +01:00
# 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
2022-05-02 21:26:04 +02:00
NOCONFIGURE=1 ./autogen.sh
2022-03-20 13:34:07 +01:00
}
2022-05-02 21:26:04 +02:00
build() {
2022-08-28 00:22:53 +02:00
cd libxml2
2022-03-20 13:34:07 +01:00
2022-08-28 00:22:53 +02:00
./configure \
2022-03-20 13:34:07 +01:00
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
2022-03-20 13:34:07 +01:00
--with-threads \
--with-history \
--with-python=/usr/bin/python \
--with-icu \
--disable-static
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
2022-03-20 13:34:07 +01:00
make
2022-05-02 21:26:04 +02:00
}
2022-03-20 13:34:07 +01:00
check() {
2022-08-28 00:22:53 +02:00
cd libxml2
make check
2022-03-20 13:34:07 +01:00
}
2022-08-29 21:42:04 +02:00
#package_libxml2() {
package() {
2022-08-28 00:22:53 +02:00
cd libxml2
make DESTDIR="$pkgdir" install
mkdir -p ../doc/usr/share
mv "$pkgdir"/usr/share/{doc,gtk-doc} -t ../doc/usr/share
install -Dm644 Copyright -t "$pkgdir/usr/share/licenses/$pkgname"
}
2022-08-29 21:42:04 +02:00
#package_libxml2-docs() {
# pkgdesc+=" (documentation)"
# depends=()
#
# mv doc/* "$pkgdir"
#}
2022-03-20 13:34:07 +01:00
#---- license gpg-key sha256sums ----
2022-08-28 00:22:53 +02:00
# license=(MIT) ... 2.9.14
license=(custom:MIT) # 2.10.1
2022-03-20 13:34:07 +01:00
sha256sums=(SKIP
2022-08-28 00:22:53 +02:00
3d07a50fc0963bda05fc5269dedc51f108260699e25e455bb31f6d80c2a9cada # libxml2-2.9.8-python3-unicode-errors.patch
2022-08-29 21:42:04 +02:00
3908e7a53b20109bdfde143238f36e22a154dbb7d363b634e54c0a18328f4656 # no-fuzz.diff
2022-03-20 13:34:07 +01:00
9b61db9f5dbffa545f4b8d78422167083a8568c59bd1129f94138f936cf6fc1f) # xmlts20130923.tar.gz
2022-05-02 21:26:04 +02:00