blob: c16e67cc99d70a4ab3b3e7edf71d84bf002a1077 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
GIST_A="perky"
GIST_ID="2838755"
GIST_SHA="78e573ca38b859c8639427c52d2c850736969bc7"
inherit lua
DESCRIPTION="a Lua Profiler"
HOMEPAGE="https://gist.github.com/perky/2838755"
SRC_URI="https://gist.github.com/${GIST_A}/${GIST_ID}/archive/${GIST_SHA}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="x86 amd64 ppc mips arm"
IUSE=""
LUA_S="${GIST_ID}-${GIST_SHA}"
each_lua_install() {
dolua ProFi.lua
}
|