mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-10 13:50:08 +02:00
42 lines
987 B
Bash
42 lines
987 B
Bash
SUMMARY="NetSurf generator for javascript bindings"
|
|
DESCRIPTION="This is a tool to generate JavaScript to DOM bindings from w3c \
|
|
webidl files and a binding configuration file."
|
|
HOMEPAGE="http://git.netsurf-browser.org/nsgenbind.git/"
|
|
COPYRIGHT="2012-2017 Vincent Sanders"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
SOURCE_URI="http://download.netsurf-browser.org/libs/releases/nsgenbind-$portVersion-src.tar.gz"
|
|
CHECKSUM_SHA256="5b86b60959a0fc86bfc676cf461d9ed5f5bb0b16cae49816a4d202ab54bb92c7"
|
|
|
|
ARCHITECTURES="!x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
nsgenbind$secondaryArchSuffix = $portVersion
|
|
cmd:nsgenbind
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
netsurf_buildsystem
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:make
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:bison
|
|
cmd:flex
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make PREFIX=$prefix NSSHARED=/system/data/netsurf-buildsystem
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install PREFIX=$prefix NSSHARED=/system/data/netsurf-buildsystem
|
|
}
|