blob: 082856baf403eeb88354ea68f1256370231a6413 (
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
30
|
# 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="Wiladams"
inherit lua
DESCRIPTION="LuaJIT binding to libdbus"
HOMEPAGE="https://github.com/Wiladams/LJIT2dbus"
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
IUSE="doc examples"
DOCS=(README.md)
EXAMPLES=(testy/.)
RDEPEND="
sys-apps/dbus
"
each_lua_install() {
dolua_jit src/*.lua
}
|