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

34 lines
429 B
Bash

version=\
(
1.16
)
url=\
(
http://rpm5.org/files/popt/popt-$version.tar.gz
)
md5=\
(
3743beefa3dd6247a73f8f7a32c14c33
)
configure()
{
"../popt-$version/configure" \
--prefix="$cfg_dir_toolchain_sysroot/usr" \
--target="$cfg_target_canonical" \
--host="$cfg_target_canonical" \
--build="$cfg_host_canonical"
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}