Sha256: f98e69d90fb147ab796d7c585eca891bd00b2fd707194ea3d29eee3457686959

Contents?: true

Size: 496 Bytes

Versions: 9

Compression:

Stored size: 496 Bytes

Contents

#! /usr/bin/env bash

set -o errexit
set -o pipefail
set -x

# sha256 from https://lists.freedesktop.org/archives/pkg-config/2017-March/001084.html
TARFILE=pkg-config-0.29.2.tar.gz
DIR=pkg-config-0.29.2
CHECKSUM=6fc69c01688c9458a57eb9a1664c9aba372ccda420a02bf4429fe610e7e7d591

cd /tmp

wget https://pkgconfig.freedesktop.org/releases/${TARFILE}
sha256sum ${TARFILE} | grep "${CHECKSUM}"

tar -xzvf ${TARFILE}
cd $DIR

./configure --prefix=/usr/local
make install

pkg-config --version
echo "OK"

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
rake-compiler-dock-1.9.1 build/mk_pkg_config.sh
rake-compiler-dock-1.9.0 build/mk_pkg_config.sh
rake-compiler-dock-1.8.0 build/mk_pkg_config.sh
rake-compiler-dock-1.7.1 build/mk_pkg_config.sh
rake-compiler-dock-1.7.0 build/mk_pkg_config.sh
rake-compiler-dock-1.7.0.rc1 build/mk_pkg_config.sh
rake-compiler-dock-1.6.0 build/mk_pkg_config.sh
rake-compiler-dock-1.5.2 build/mk_pkg_config.sh
rake-compiler-dock-1.5.1 build/mk_pkg_config.sh