mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-12 06:40:08 +02:00
note: there aren't any actual changes for antlr_cpp besides the version number, it is just bumped for consistency.
34 lines
907 B
Bash
34 lines
907 B
Bash
SUMMARY="The ANTLR Parser Generator (Java runtime)"
|
|
DESCRIPTION="ANTLR (ANother Tool for Language Recognition) is a powerful parser generator for \
|
|
reading, processing, executing, or translating structured text or binary files. It's widely used \
|
|
to build languages, tools, and frameworks. From a grammar, ANTLR generates a parser that can \
|
|
build and walk parse trees."
|
|
HOMEPAGE="https://www.antlr.org/"
|
|
COPYRIGHT="2012-2022 The ANTLR Project"
|
|
LICENSE="BSD (3-clause)"
|
|
REVISION="1"
|
|
SOURCE_URI="https://www.antlr.org/download/antlr-runtime-$portVersion.jar#noarchive"
|
|
CHECKSUM_SHA256="54665d2838cc66458343468efc539e454fc95b46a8a04b13c6ac43fc9be63505"
|
|
|
|
ARCHITECTURES="any"
|
|
DISABLE_SOURCE_PACKAGE="yes"
|
|
|
|
PROVIDES="
|
|
antlr_runtime = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
java:runtime >= 11
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
"
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $libDir
|
|
cp antlr-runtime-$portVersion.jar $libDir
|
|
}
|