From 731239505587b4b09a639011f36fedb623fa83c7 Mon Sep 17 00:00:00 2001 From: Jose Pinto Date: Fri, 26 Jun 2015 12:03:50 +0100 Subject: [PATCH] pkg-config: Added flag to use bundled libraries. --- packages/pkg-config/host.bash | 38 +++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 packages/pkg-config/host.bash diff --git a/packages/pkg-config/host.bash b/packages/pkg-config/host.bash new file mode 100644 index 0000000..1e5bad6 --- /dev/null +++ b/packages/pkg-config/host.bash @@ -0,0 +1,38 @@ +version=\ +( + "0.28" +) + +url=\ +( + "http://pkgconfig.freedesktop.org/releases/pkg-config-$version.tar.gz" +) + +md5=\ +( + "aa3c86e67551adc3ac865160e34a2a0d" +) + +maintainer=\ +( + "Ricardo Martins " +) + +configure() +{ + ./configure \ + --prefix="${cfg_dir_toolchain}" \ + --disable-shared \ + --enable-static \ + --with-internal-glib +} + +build() +{ + $cmd_make +} + +host_install() +{ + $cmd_make install +}