You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-lua/luasocket/luasocket-3.0_rc1-r1.ebuild

44 lines
1019 B

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lua/luasocket/luasocket-3.0_rc1-r1.ebuild,v 1.1 2013/09/16 16:35:09 mrueg Exp $
EAPI=5
inherit multilib flag-o-matic
DESCRIPTION="Networking support library for the Lua language."
HOMEPAGE="http://www.tecgraf.puc-rio.br/~diego/professional/luasocket/"
SRC_URI="https://github.com/diegonehab/${PN}/archive/v${PV/_/-}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="debug"
RDEPEND=">=dev-lang/lua-5.1[deprecated]"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S=${WORKDIR}/${PN}-${PV/_/-}
RESTRICT="test"
src_compile() {
emake \
CC="$(tc-getCC) ${CFLAGS}" \
LD="$(tc-getCC) ${LDFLAGS}"\
$(usex debug DEBUG="DEBUG" "")
}
src_install() {
local luav=$(pkg-config --variable V lua)
emake \
DESTDIR="${D}" \
LUAPREFIX_linux=/usr \
LUAV=${luav} \
CDIR_linux=$(get_libdir)/lua/${luav} \
install
dodoc NEW README
dohtml doc/*
}