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

33 lines
353 B
Bash
Raw Normal View History

2013-07-13 17:19:22 +01:00
version=\
(
"2.5.35"
)
url=\
(
"http://downloads.sourceforge.net/flex/flex-${version}.tar.bz2"
)
md5=\
(
"10714e50cea54dc7a227e3eddcd44d57"
)
configure()
{
./configure \
--prefix="${cfg_dir_toolchain}" \
--disable-shared \
--enable-static
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}