blob: 38dd2c2775f3e3361f480e1f430ddcb2ab51aac3 (
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
|
# Copyright 1999-2019 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
LUA_COMPAT="luajit2"
VCS="git"
GITHUB_A="thenumbernine"
inherit lua
DESCRIPTION="Some common headers ported over to LuaJIT FFI"
HOMEPAGE="https://github.com/thenumbernine/lua-ffi-bindings"
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND=""
RDEPEND="
dev-lua/lua-ffi-bindings
"
DOCS=(README)
each_lua_install() {
_dolua_jit_insdir="ffi" \
dolua_jit *.lua c/ vec/
}
|