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/yaml-cpp/default.bash

60 lines
897 B
Bash

version=\
(
"0.5.0"
)
url=\
(
"http://yaml-cpp.googlecode.com/files/yaml-cpp-${version}.tar.gz"
)
md5=\
(
"c6d96190434d5959d814c603f98512c6"
)
requires=\
(
"cmake/host"
)
configure()
{
$cmd_mkdir build
cd build
cmake \
-DCMAKE_C_COMPILER="${cmd_target_cc}" \
-DCMAKE_CXX_COMPILER="${cmd_target_cxx}" \
-DCMAKE_FIND_ROOT_PATH="${cfg_dir_toolchain_sysroot}/usr" \
-DCMAKE_INSTALL_PREFIX="${cfg_dir_toolchain_sysroot}/usr" \
-DBUILD_SHARED_LIBS=ON \
..
}
build()
{
cd build
$cmd_make
}
host_install()
{
cd build
$cmd_make install
}
target_install()
{
# Libs:
for f in "$cfg_dir_toolchain_sysroot/usr/lib/"libyaml-cpp*.so*; do
if [ -L "$f" ]; then
cp -av "$f" "$cfg_dir_rootfs/usr/lib"
else
$cmd_target_strip -v "$f" -o "$cfg_dir_rootfs/usr/lib/$(basename "$f")"
fi
done
}