aboutsummaryrefslogtreecommitdiff
path: root/core/pkgconf/build
blob: 6e976679be9faf61b274ee3ed3df3bb47eabf9d0 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh -e

./configure \
    --prefix=/usr \
    --sysconfdir=/etc

make CCLD="${CC:-cc} -all-static"
make DESTDIR="$1" install

ln -s pkgconf "$1/usr/bin/pkg-config"