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

32 lines
379 B
Bash

version=\
(
"6.0"
)
url=\
(
"ftp://ftp.info-zip.org/pub/infozip/src/unzip60.tgz"
)
md5=\
(
"62b490407489521db863b523a7f86375"
)
maintainer=\
(
"Ricardo Martins <rasm@fe.up.pt>"
)
build()
{
cd ../unzip60 &&
$cmd_make -f unix/Makefile generic
}
host_install()
{
cd ../unzip60 &&
$cmd_make prefix="$cfg_dir_toolchain" -f unix/Makefile install
}