2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-10-01 05:51:05 -06:00
repo/extra/pkgconf/build

14 lines
206 B
Plaintext
Raw Normal View History

2019-05-18 09:21:03 -06:00
#!/bin/sh -e
./configure \
2019-05-18 09:44:10 -06:00
--prefix=/usr \
--sysconfdir=/etc
2019-05-18 09:21:03 -06:00
make
2019-05-18 09:42:33 -06:00
make DESTDIR="$1" install
2019-05-18 09:21:03 -06:00
2019-09-16 04:35:39 -06:00
ln -s pkgconf "$1/usr/bin/pkg-config"
2021-07-06 04:39:28 -06:00
# Remove documentation (README, etc).
rm -rf "$1/usr/share/doc"