Files
haikuports/media-libs/libsvgtiny/libsvgtiny-0.1.1.recipe
Humdinger 36e5637b9f De-lint recipes
*	libmikmod
	Re-ordered blocks

*	libmodplug
	Don't start SUMMARY with app name
	Re-ordered blocks

*	librecad
	Don't start SUMMARY with app name
	Re-ordered blocks

*	libsvgtiny
	Don't start SUMMARY with app name
	Re-ordered blocks

*	libwalter
	Don't start SUMMARY with app name
	Re-ordered blocks

*	libwapcaplet
	Don't start SUMMARY with app name
	Re-ordered blocks

*	libxau
	Improved SUMMARY and DESCRIPTION
	Re-ordered blocks

*	links
	Improved SUMMARY and DESCRIPTION
	Re-ordered blocks

*	lynx
	Don't start SUMMARY with app name
	Re-ordered blocks
2015-08-07 17:49:48 +02:00

61 lines
1.3 KiB
Bash

SUMMARY="An implementation of SVG Tiny written in C"
DESCRIPTION="The overall idea of the library is to take some SVG as input, \
and return a list of paths and texts which can be rendered easily. The \
library does not do the actual rendering."
HOMEPAGE="http://www.netsurf-browser.org/projects/libsvgtiny"
COPYRIGHT="2003-2014 The NetSurf Developers"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="http://download.netsurf-browser.org/libs/releases/libsvgtiny-$portVersion-src.tar.gz"
CHECKSUM_SHA256="0835de639ae0266c394824fa78dc210013c5eeddef222d8b6485edb7fe0ddcd6"
PATCHES="libsvgtiny-$portVersion.patchset"
ARCHITECTURES="x86_gcc2 x86 x86_64"
PROVIDES="
libsvgtiny = $portVersion
"
REQUIRES="
haiku
"
PROVIDES_devel="
libsvgtiny_devel = $portVersion
devel:libsvgtiny = $portVersion
"
REQUIRES_devel="
libsvgtiny$secondaryArchSuffix == $portVersion base
"
BUILD_REQUIRES="
haiku_devel
devel:libwapcaplet
devel:libdom
"
BUILD_PREREQUIRES="
netsurf_buildsystem
cmd:gcc
cmd:gperf
cmd:make
cmd:pkg_config
"
BUILD()
{
make PREFIX=$prefix NSSHARED=/system/data/netsurf-buildsystem \
INCLUDEDIR=$relativeIncludeDir
}
INSTALL()
{
make PREFIX=$prefix NSSHARED=/system/data/netsurf-buildsystem \
INCLUDEDIR=$relativeIncludeDir install
prepareInstalledDevelLib libsvgtiny
fixPkgconfig
# devel package
packageEntries devel \
$developDir
}