repo/extra/libxml2/build

16 lines
235 B
Plaintext
Raw Normal View History

2019-07-23 01:26:49 -06:00
#!/bin/sh -e
./configure \
--prefix=/usr \
--with-threads \
--with-history \
--without-python \
--without-icu
make
make DESTDIR="$1" install
2019-08-11 11:56:53 -06:00
# Remove docs.
rm -rf "$1/usr/share/doc"
2019-08-18 18:58:59 -06:00
rm -rf "$1/usr/share/gtk-doc"