19 lines
371 B
Plaintext
19 lines
371 B
Plaintext
|
# Description: Libraries and utilities used for parsing XML files.
|
||
|
# URL: http://xmlsoft.org/
|
||
|
# Packager: Pierre at nutyx dot org
|
||
|
# Depends on: python
|
||
|
|
||
|
name=libxml2
|
||
|
version=2.9.3
|
||
|
release=1
|
||
|
|
||
|
source=(ftp://xmlsoft.org/libxml2/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr \
|
||
|
--disable-static --with-history
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|