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/protobuf/default.bash
2014-02-02 09:47:16 +00:00

45 lines
691 B
Bash

source $pkg_common
requires=\
(
'protobuf/cross'
)
configure()
{
./configure \
--prefix="${cfg_dir_toolchain_sysroot}/usr" \
--build=$cfg_host_canonical \
--host="$cfg_target_canonical" \
--target="$cfg_target_canonical" \
--with-protoc=$pkg_build_dir/../cross/glued_host/bin/protoc
}
comment=\
(
"24/10/2012 - In test yet."
)
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}
target_install()
{
# Libs:
for f in "$cfg_dir_toolchain_sysroot/usr/lib/"*proto*.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
}