forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
luasocket-3.0_rc1-r4.ebuild
55 lines (43 loc) · 1.15 KB
/
luasocket-3.0_rc1-r4.ebuild
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit multilib multilib-minimal 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 ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="debug"
RDEPEND=">=dev-lang/lua-5.1.5-r2[deprecated,${MULTILIB_USEDEP}]"
DEPEND="${RDEPEND}
>=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]"
S=${WORKDIR}/${PN}-${PV/_/-}
RESTRICT="test"
PATCHES=(
"${FILESDIR}"/proxy-fix.patch
)
src_prepare() {
default
multilib_copy_sources
}
multilib_src_compile() {
emake \
CC="$(tc-getCC) ${CFLAGS}" \
LD="$(tc-getCC) ${LDFLAGS}"\
$(usex debug DEBUG="DEBUG" "")
}
multilib_src_install() {
local luav=$($(tc-getPKG_CONFIG) --variable V lua)
emake \
DESTDIR="${D}" \
LUAPREFIX_linux=/usr \
LUAV=${luav} \
CDIR_linux=$(get_libdir)/lua/${luav} \
install-unix
}
multilib_src_install_all() {
dodoc NEW README
docinto html
dodoc -r doc/.
}