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

38 lines
416 B
Bash

version=\
(
'1.12.2'
)
url=\
(
"http://www.lsts.pt/glued/fakeroot_$version.tar.gz"
)
md5=\
(
'1eb7d972a19159035892e7d132602726'
)
maintainer=\
(
'Ricardo Martins <rasm@fe.up.pt>'
)
configure()
{
"../fakeroot-$version/configure" \
--prefix="$cfg_dir_toolchain" \
--disable-static \
--enable-shared
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}