mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-23 12:10:06 +02:00
33 lines
697 B
Plaintext
33 lines
697 B
Plaintext
DESCRIPTION="tool for generating C-based recognizers from regular expressions"
|
|
HOMEPAGE="http://re2c.org"
|
|
SRC_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
|
|
|