mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-21 22:44:59 +00:00
23 lines
471 B
Plaintext
Executable File
23 lines
471 B
Plaintext
Executable File
# description : Contains libraries and utilities used for parsing XML files
|
|
# depends : icu python3
|
|
|
|
name=libxml2
|
|
version=2.9.9
|
|
release=1
|
|
source=(http://xmlsoft.org/sources/$name-$version.tar.gz)
|
|
md5sum=(c04a5a0a042eaa157e8e8c9eabe76bd6)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-static \
|
|
--with-history \
|
|
--with-icu \
|
|
--with-python=/usr/bin/python3
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/{gtk-,}doc
|
|
}
|