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/dev-lua/messagepack/messagepack-0.3.2.ebuild

29 lines
695 B

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit toolchain-funcs
DESCRIPTION="A pure Lua implementation of the MessagePack serialization format"
HOMEPAGE="http://fperrad.github.io/lua-MessagePack/"
SRC_URI="https://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
insinto "$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD ${lua})"
doins src/MessagePack.lua
dodoc CHANGES README.md
}