blob: c4a030d0edbcc93f8bea58b1d56e90a7b4bffab5 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/dev-lang/lua/lua-4.0.ebuild,v 1.4 2002/07/11 06:30:20 drobbins Exp $
S=${WORKDIR}/lua
DESCRIPTION="A powerful light-weight programming language designed for extending applications."
SRC_URI="http://www.lua.org/ftp/${PN}.tar.gz"
HOMEPAGE="http://www.lua.org/"
SLOT="0"
src_compile() {
patch < ${FILESDIR}/lua-4.0-config.patch
emake || die
make so || die
}
src_install () {
make \
INSTALL_BIN=${D}/usr/bin \
INSTALL_MAN=${D}/usr/share/man/man1 \
INSTALL_INC=${D}/usr/include \
INSTALL_LIB=${D}/usr/lib \
install || die
}
|