mirror of
https://github.com/outbackdingo/ports.git
synced 2026-04-05 04:09:04 +00:00
21 lines
403 B
Plaintext
Executable File
21 lines
403 B
Plaintext
Executable File
# description : Contains libraries and utilities used for parsing XML files
|
|
# depends : icu
|
|
|
|
name=libxml2
|
|
version=2.11.5
|
|
release=1
|
|
source="https://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz"
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-static \
|
|
--with-history \
|
|
--with-icu \
|
|
--without-python
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|