2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-08-20 05:06:58 +00:00
repo/extra/libxml2/build

16 lines
235 B
Plaintext
Raw Normal View History

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