mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-23 12:10:06 +02:00
64 lines
2.3 KiB
Bash
64 lines
2.3 KiB
Bash
SUMMARY="Simplified Wrapper and Interface Generator"
|
|
DESCRIPTION="SWIG is a software development tool that connects programs \
|
|
written in C and C++ with a variety of high-level programming languages. SWIG \
|
|
is used with different types of target languages including common scripting \
|
|
languages such as Perl, PHP, Python, Tcl and Ruby. The list of supported \
|
|
languages also includes non-scripting languages such as C#, Common Lisp \
|
|
(CLISP, Allegro CL, CFFI, UFFI), D, Go language, Java including Android, \
|
|
Lua, Modula-3, OCAML, Octave and R. Also several interpreted and compiled \
|
|
Scheme implementations (Guile, MzScheme/Racket, Chicken) are supported. SWIG \
|
|
is most commonly used to create high-level interpreted or compiled \
|
|
programming environments, user interfaces, and as a tool for testing and \
|
|
prototyping C/C++ software. SWIG is typically used to parse C/C++ interfaces \
|
|
and generate the 'glue code' required for the above target languages to call \
|
|
into the C/C++ code. SWIG can also export its parse tree in the form of XML \
|
|
and Lisp s-expressions. SWIG is free software and the code that SWIG \
|
|
generates is compatible with both commercial and non-commercial projects."
|
|
LICENSE="SWIG"
|
|
COPYRIGHT="1995-1998 University of Utah and the Regents of the University of California
|
|
1998-2005 University of Chicago
|
|
2005-2006 Arizona Board of Regents (University of Arizona)
|
|
1995-2017 The SWIG Developers"
|
|
HOMEPAGE="http://www.swig.org/"
|
|
SOURCE_URI="http://sourceforge.net/projects/swig/files/swig/swig-$portVersion/swig-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="7cf9f447ae7ed1c51722efc45e7f14418d15d7a1e143ac9f09a668999f4fc94d"
|
|
REVISION="2"
|
|
ARCHITECTURES="x86 ?x86_gcc2 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
swig${secondaryArchSuffix} = $portVersion
|
|
cmd:swig$secondaryArchSuffix = $portVersion compat >= 3
|
|
cmd:ccache_swig$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku${secondaryArchSuffix}
|
|
lib:libpcre$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
devel:libpcre$secondaryArchSuffix
|
|
devel:libz$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
cmd:libtoolize$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:g++$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:bison
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|