summaryrefslogtreecommitdiff
blob: eefe96c384e57eb25ea28919675a20c7de43b865 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils

DESCRIPTION="a C library for encoding, decoding and manipulating JSON data"

HOMEPAGE="http://www.digip.org/jansson/"

SRC_URI="http://www.digip.org/jansson/releases/${P}.tar.bz2"

LICENSE="MIT"

SLOT="0"

KEYWORDS="~amd64 ~x86"

IUSE=""

DEPEND=""
RDEPEND="${DEPEND}"

#S="${WORKDIR}/${P}"

src_compile() {
	econf

	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
}