2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00
repo/extra/expat/build
2023-03-05 17:34:06 -06:00

15 lines
240 B
Bash
Executable File

#!/bin/sh -e
./configure \
--prefix=/usr \
--without-xmlwf \
--without-examples \
--without-tests \
--without-docbook
make
make DESTDIR="$1" install
# Remove documentation (Changelogs, etc).
rm -rf "${1:?}/usr/share"