repo/extra/libxml2/build
2019-08-11 17:56:53 +00:00

15 lines
205 B
Bash
Executable File

#!/bin/sh -e
./configure \
--prefix=/usr \
--with-threads \
--with-history \
--without-python \
--without-icu
make
make DESTDIR="$1" install
# Remove docs.
rm -rf "$1/usr/share/doc"