blob: 4ca9405222c2052f23e53337e97b5eb2213dd23f (
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-2019 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
VCS="git"
GITHUB_A="lua-stdlib"
GITHUB_PN="${PN#lua-std-}"
inherit lua
DESCRIPTION="Functional Programming with Lua"
HOMEPAGE="https://github.com/lua-stdlib/functional"
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
IUSE="doc"
HTML_DOCS=(doc/.)
DOCS=(README.md NEWS.md)
lua_add_bdepend "doc? ( dev-lua/ldoc )"
lua_add_rdepend "dev-lua/lua-std-normalize"
each_lua_compile() {
if [[ "${PV}" == "9999" ]]; then
ver="git:$(git rev-parse --short @):${LUA_IMPL}"
fi
lua_default
}
each_lua_install() {
dolua lib/std
}
|