blob: 577fcf05d7ac7e5fb49306e1d6798804e2f76582 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit git-2
DESCRIPTION="A json parser for the shell"
HOMEPAGE="http://kmkeen.com/jshon/"
EGIT_REPO_URI="https://github.com/keenerd/${PN}.git"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
RDEPEND="dev-libs/jansson"
DEPEND="${RDEPEND}
sys-devel/gcc"
src_install() {
dobin ${PN}
doman ${PN}.1
}
|