mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
32 lines
696 B
Bash
32 lines
696 B
Bash
DESCRIPTION="tool for generating C-based recognizers from regular expressions"
|
|
HOMEPAGE="http://re2c.org"
|
|
SOURCE_URI="http://sourceforge.net/projects/re2c/files/re2c/0.13.5/re2c-0.13.5.tar.gz/download"
|
|
REVISION="1"
|
|
STATUS_HAIKU="broken"
|
|
DEPEND=""
|
|
MESSAGE="This port only builds with gcc4. Use 'setgcc gcc4' before building."
|
|
CHECKSUM_MD5="4a97d8f77ed6d2c76c8bd840a43f5633"
|
|
BUILD()
|
|
{
|
|
cd re2c-0.13.5
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY`
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd re2c-0.13.5
|
|
make install
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
cd re2c-0.13.5
|
|
# make test
|
|
# make check
|
|
}
|
|
|
|
#LICENSE="Public Domain"
|
|
#COPYRIGHT
|
|
#Written by 2003 Peter Bumbulis, currently maintained by Dan Nuffer, Marcus Boerger and Hartmut Kaiser
|