You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-misc/jq/jq-1.2.ebuild

33 lines
720 B

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/jq/jq-1.2.ebuild,v 1.1 2013/01/04 18:34:32 radhermit Exp $
EAPI=5
inherit toolchain-funcs eutils
DESCRIPTION="A lightweight and flexible command-line JSON processor"
HOMEPAGE="http://stedolan.github.com/jq/"
SRC_URI="https://github.com/stedolan/jq/archive/${P}.tar.gz"
LICENSE="MIT CCPL-Attribution-3.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
DEPEND="sys-devel/bison
sys-devel/flex
test? ( dev-util/valgrind )"
S=${WORKDIR}/${PN}-${P}
src_prepare() {
epatch "${FILESDIR}"/${P}-makefile.patch
tc-export CC
}
src_install() {
dobin jq
dodoc README.md
}