blob: dceaac490281e6e2846e676036f5a8be034b2cb4 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Larry Cow <larrycow@free.fr>
# $Header: /var/cvsroot/gentoo-x86/dev-lang/lua/lua-4.0.ebuild,v 1.3 2002/06/10 00:51:35 rphillips 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
}
|