summaryrefslogtreecommitdiff
blob: 31c329ba9b744f720ed3b5b84016c336c7c39e6a (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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=5
inherit toolchain-funcs

DESCRIPTION="A pure Lua implementation of the MessagePack serialization format"
HOMEPAGE="http://fperrad.github.io/lua-MessagePack/"
SRC_URI="http://dev.gentoo.org/~yngwin/distfiles/lua-${P}.tar.xz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+luajit"

RDEPEND="luajit? ( dev-lang/luajit:2 )
	!luajit? ( dev-lang/lua:= )"
DEPEND="${RDEPEND}
	virtual/pkgconfig"

src_install() {
	local lua=lua
	use luajit && lua=luajit
	emake LUAVER="$($(tc-getPKG_CONFIG) --variable V ${lua})" \
		PREFIX="${EPREFIX}"/usr DESTDIR="${D}" install
	dodoc CHANGES README.md
}