2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-11-17 04:00:14 -07:00
repo/extra/libxml2/build

15 lines
205 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"