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/rules/pkg-config/host.bash

38 lines
414 B
Bash
Raw Normal View History

2013-07-13 17:19:22 +01:00
version=\
(
"0.25"
)
url=\
(
"http://pkgconfig.freedesktop.org/releases/pkg-config-$version.tar.gz"
)
md5=\
(
"a3270bab3f4b69b7dc6dbdacbcae9745"
)
maintainer=\
(
"Ricardo Martins <rasm@fe.up.pt>"
)
configure()
{
./configure \
--prefix="${cfg_dir_toolchain}" \
--disable-shared \
--enable-static
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}