blob: 0cfe7b0f3ad170ec51eb4b141755f69461dc7e2d (
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
32
33
34
35
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
VCS="git"
GITHUB_A="lua-stdlib"
inherit lua
DESCRIPTION="Standard Lua libraries"
HOMEPAGE="https://github.com/lua-stdlib/lua-stdlib"
LICENSE="GPL"
SLOT="0"
KEYWORDS=""
IUSE="doc"
DOCS=(README.md NEWS.md STYLE.md)
all_lua_prepare() {
lua_default
mkdir -p html
sed \
-e '/^dir/s@"."@"../html"@' \
-i doc/config.ld.in
}
each_lua_compile() { :; }
# ldoc definitions are currently broken
all_lua_compile() { :; }
each_lua_install() {
dolua lib/std
}
|