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 +}