mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-20 18:50:08 +02:00
42 lines
986 B
Bash
42 lines
986 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 Vincent Sanders"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
SOURCE_URI="http://download.netsurf-browser.org/libs/releases/nsgenbind-0.1.2-src.tar.gz"
|
|
CHECKSUM_SHA256="94a87e9a223791693724e929cc7b13e334d4baaf73f7d0a91fdf938c9a260a9a"
|
|
|
|
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 $jobArgs PREFIX=$prefix NSSHARED=/system/data/netsurf-buildsystem
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install PREFIX=$prefix NSSHARED=/system/data/netsurf-buildsystem
|
|
}
|