diff --git a/xorg/libXmeta/build b/xorg/libXmeta/build new file mode 100755 index 00000000..6e518ca6 --- /dev/null +++ b/xorg/libXmeta/build @@ -0,0 +1,14 @@ +#!/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"