99. pkg-config

wget http://www.gnuwakes.org/depot/1.0/main/sources/pkg-config-0.28.tar.gz

tar -xf pkg-config-0.28.tar.gz

SOURCES_DIR=$PWD/pkg-config-0.28
INSTALL_DIR=$PWD/pkg-config-0.28-install
BUILD_DIR=$PWD/pkg-config-0.28-build

mkdir $INSTALL_DIR $BUILD_DIR
cd $BUILD_DIR

$SOURCES_DIR/configure                         \
    --prefix=/usr                              \
    --with-internal-glib                       \
    --disable-host-tool                        \
    --docdir=/usr/share/doc/pkg-config-0.28 && \
  make && make check && make DESTDIR=$INSTALL_DIR install