20 lines
465 B
Text
Executable file
20 lines
465 B
Text
Executable file
# Description: Libraries and utilities used for parsing XML files
|
|
# URL:
|
|
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
|
|
# Depends on:
|
|
|
|
name=libxml2
|
|
version=2.9.10
|
|
release=1
|
|
source=(http://xmlsoft.org/sources/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-static \
|
|
--with-history \
|
|
--with-python=/usr/bin/python3
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|