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

28 lines
402 B
Bash

version=\
(
'1.0'
)
url=\
(
"http://www.lsts.pt/glued/gnu-config-$version.tar.bz2"
)
md5=\
(
'6bd074b651c9145466532bd8786fbb30'
)
maintainer=\
(
'Ricardo Martins <rasm@fe.up.pt>'
)
host_install()
{
dir="$cfg_dir_toolchain/share/gnu-config"
$cmd_mkdir "$dir" &&
cp -v "../gnu-config-$version/config.sub" "$dir" &&
cp -v "../gnu-config-$version/config.guess" "$dir"
}