mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
Update libnsgif-0.1.1.recipe Update libsdl2-2.0.0.recipe Update haikuwebkit-1.2.0.recipe Update haikuwebkit-1.2.1.recipe Update haikuwebkit-1.2.2.recipe Update haikuwebkit-1.2.3.recipe Update haikuwebkit-1.2.0.recipe Update haikuwebkit-1.2.1.recipe Update haikuwebkit-1.2.2.recipe Update libnsbmp-0.1.1.recipe Update libnsgif-0.1.1.recipe Update libsdl2-2.0.0.recipe Update libmpdclient-2.11_git.recipe Update libpng-1.5.25.recipe Update libcss-0.4.0.recipe Update libdvdnav-4.2.0.recipe Update libsdl2-2.0.0.recipe
55 lines
1.2 KiB
Bash
55 lines
1.2 KiB
Bash
SUMMARY="A decoding library for GIF images"
|
|
DESCRIPTION="Libnsgif is a decoding library written in C for GIF image file format. \
|
|
It was written as part of the NetSurf project."
|
|
HOMEPAGE="http://www.netsurf-browser.org/projects/libnsgif/"
|
|
COPYRIGHT="2006 Richard Wilson, 2008 - 2013 Sean Fox"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
SOURCE_URI="http://download.netsurf-browser.org/libs/releases/libnsgif-$portVersion-src.tar.gz"
|
|
CHECKSUM_SHA256="d450ea0a9da234486e997248b30a86524f75f1021ca67017b5597423cf6c0a15"
|
|
PATCHES="libnsgif-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
|
|
PROVIDES="
|
|
libnsgif = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
libnsgif_devel = $portVersion
|
|
devel:libnsgif = $portVersion
|
|
"
|
|
REQUIRES_devel="
|
|
libnsgif$secondaryArchSuffix == $portVersion base
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel
|
|
netsurf_buildsystem
|
|
cmd:gcc
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make PREFIX=$prefix NSSHARED=/system/data/netsurf-buildsystem
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make PREFIX=$prefix NSSHARED=/system/data/netsurf-buildsystem \
|
|
INCLUDEDIR=$relativeIncludeDir install
|
|
|
|
prepareInstalledDevelLib libnsgif
|
|
fixPkgconfig
|
|
|
|
# devel package
|
|
packageEntries devel \
|
|
$developDir
|
|
}
|