mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-16 08:40:06 +02:00
* this fixes the wrong recipe names introduced by myself in #d525fee * adjust patch names to match corresponding recipes * additionally: create 'additional-files' folders as hint to some ports that do not have a proper recipe yet
26 lines
517 B
Plaintext
26 lines
517 B
Plaintext
DESCRIPTION="A JSON implementation in C"
|
|
HOMEPAGE="http://oss.metaparadigm.com/json-c/"
|
|
SRC_URI="http://oss.metaparadigm.com/json-c/json-c-0.9.tar.gz"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
CHECKSUM_MD5="3a13d264528dcbaf3931b0cede24abae"
|
|
BUILD()
|
|
{
|
|
cd json-c-0.9
|
|
libtoolize --force --install --copy
|
|
aclocal
|
|
autoconf
|
|
automake
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY`
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd json-c-0.9
|
|
make install DESTDIR=${DESTDIR}
|
|
}
|
|
|
|
LICENSE="MIT"
|
|
COPYRIGHT="2004-2005 Metaparadigm Pte Ltd" |