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

23 lines
287 B
Bash

source "$pkg_common"
configure()
{
$cmd_make distclean
"../e2fsprogs-$version/configure" \
--prefix="$cfg_dir_toolchain" \
--disable-shared \
--enable-static \
--disable-nls
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}