repo/xorg/libX11/build
2019-08-11 18:22:59 +00:00

13 lines
167 B
Bash
Executable File

#!/bin/sh -e
CFLAGS_FOR_BUILD=-fPIC \
./configure \
--prefix=/usr \
--enable-static
make
make DESTDIR="$1" install
# Remove docs.
rm -rf "$1/usr/share/doc"