2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-07 16:32:28 +00:00
repo/xorg/libXmeta/build
Dylan Araps 0d8e4fa474
libXmeta: new meta package
Unifies build files for libX* packages.
2021-07-06 15:01:01 +03:00

15 lines
224 B
Bash
Executable File

#!/bin/sh -e
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--disable-static
make
make DESTDIR="$1" install
# Remove library documentation.
# False positive.
# shellcheck disable=2115
rm -rf "$1/usr/share"