blob: e5c149e187d68a3da1484e877abad655c70f2f42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
DEPS=(zlib readline ncurses xz icu)
SOURCE=http://xmlsoft.org/sources/libxml2-2.9.12.tar.gz
DESC="XML parsing library"
build () {
./configure --prefix=/usr \
--disable-static \
--with-history \
--with-python=/usr/bin/python3 &&
make
make DESTDIR=$PKG_DEST install
}
|