blob: 68c3a63603c00a3c39cfd002ddcc59eb46bbaafb (
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
31
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
VCS="git"
IS_MULTILIB=true
LUA_COMPAT="lua51 luajit2"
GITHUB_A="msva"
inherit cmake-utils lua
DESCRIPTION="A minimal set of XML processing function in Lua, with simple mapping between XML and Lua tables"
HOMEPAGE="http://viremo.eludi.net/LuaXML/"
#EGIT_REPO_URI="https://github.com/msva/luaxml"
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
IUSE=""
each_lua_configure() {
mycmakeargs=(
-DINSTALL_CMOD="$(lua_get_pkgvar INSTALL_CMOD)"
-DINSTALL_LMOD="$(lua_get_pkgvar INSTALL_LMOD)"
)
cmake-utils_src_configure
}
|