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/xorg-xcb-proto/default.bash

46 lines
598 B
Bash

version=\
(
'1.6'
)
url=\
(
"http://xcb.freedesktop.org/dist/xcb-proto-$version.tar.bz2"
)
md5=\
(
'04313e1d914b44d0e457f6c494fc178b'
)
maintainer=\
(
'Ricardo Martins <rasm@fe.up.pt>'
)
requires=\
(
'python_host/host'
)
configure()
{
"../xcb-proto-$version/configure" \
--target="$cfg_target_canonical" \
--host="$cfg_target_canonical" \
--build="$cfg_host_canonical" \
--prefix="$cfg_dir_toolchain_sysroot/usr" \
--disable-static \
--enable-shared
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}