This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
lsts_glued/packages/pkg-config/host.bash

39 lines
445 B
Bash

version=\
(
"0.28"
)
url=\
(
"http://pkgconfig.freedesktop.org/releases/pkg-config-$version.tar.gz"
)
md5=\
(
"aa3c86e67551adc3ac865160e34a2a0d"
)
maintainer=\
(
"Ricardo Martins <rasm@fe.up.pt>"
)
configure()
{
./configure \
--prefix="${cfg_dir_toolchain}" \
--disable-shared \
--enable-static \
--with-internal-glib
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}