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

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

make
make DESTDIR="$1" install

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