repo/core/xz/build

12 lines
Plaintext
Raw Normal View History

#!/bin/sh -e
./configure \
2019-07-13 09:26:04 -06:00
--prefix=/usr \
--disable-nls
make
make DESTDIR="$1" install
2019-08-11 12:18:54 -06:00
# Remove docs.
rm -rf "$1/usr/share/doc"