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

40 lines
488 B
Bash

version=\
(
"1.03"
)
url=\
(
"http://www.lzop.org/download/lzop-$version.tar.gz"
)
md5=\
(
"006c5e27fb78cdd14a628fdfa5aa1905"
)
maintainer=\
(
"Ricardo Martins <rasm@fe.up.pt>"
)
configure()
{
CPPFLAGS="-I$cfg_dir_toolchain/include" \
LDFLAGS="-L$cfg_dir_toolchain/lib" \
./configure \
--prefix="$cfg_dir_toolchain" \
--disable-shared \
--enable-static
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}