2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 22:12:27 +00:00

libXmeta: fix pkgconfig location

This commit is contained in:
Dylan Araps 2021-07-06 15:09:49 +03:00
parent 218f02c6eb
commit 6e6f4ec16d
No known key found for this signature in database
GPG Key ID: 13295DAC2CF13B5C

View File

@ -8,6 +8,12 @@
make
make DESTDIR="$1" install
# Some X11 packages install to /usr/share.
! [ -d "$1/usr/share/pkgconfig" ] || {
mkdir -p "$1/usr/lib"
mv -f "$1/usr/share/pkgconfig" "$1/usr/lib"
}
# Remove library documentation.
# False positive.
# shellcheck disable=2115