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/util-linux/host.bash

23 lines
361 B
Bash
Raw Normal View History

2013-07-13 17:19:22 +01:00
source "$PKG_COMMON"
configure()
{
cd "$pkg_build_dir" &&
"../util-linux-$version/configure" \
--prefix="$cfg_dir_toolchain" \
--disable-wall \
--enable-static \
--disable-shared \
--without-ncurses
}
build()
{
$cmd_make -C "$pkg_build_dir"
}
target_install()
{
$cmd_make -C "$pkg_build_dir" install
}