compat-32/libxml2-32/Pkgfile

25 lines
548 B
Plaintext
Raw Normal View History

# Description: XML library version 2
2023-12-07 11:51:36 +01:00
# URL: https://gitlab.gnome.org/GNOME/libxml2/-/wikis/home
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
2019-08-27 13:48:19 +02:00
# Depends on: libxml2 xz-32 zlib-32
name=libxml2-32
2024-01-17 22:39:47 +01:00
version=2.12.4
release=1
2022-10-16 05:35:46 +02:00
source=(https://download.gnome.org/sources/libxml2/${version:0:4}/libxml2-$version.tar.xz)
2014-10-18 13:57:32 +02:00
build() {
cd ${name%-*}-$version
2014-10-18 13:57:32 +02:00
./configure \
--prefix=/usr \
--libdir=/usr/lib32 \
2022-09-03 14:21:37 +02:00
--sysconfdir=/etc \
2014-10-18 13:57:32 +02:00
--without-python
make
make DESTDIR=$PKG install
2015-11-21 03:10:45 +01:00
2016-05-28 07:31:35 +02:00
rm -r $PKG/usr/{bin,include,share/man,share}
}