libluv: remove lua dependency (it depends on luajit)

The lua dependency didn't make any sense since libluv can be
compiled for one or the other. We choose luajit because neovim
is also compiled with luajit etc. and it's the default choice.
This commit is contained in:
q66 2020-07-01 18:12:00 +02:00
parent 1d864d8f7e
commit c1c7870774

View file

@ -1,14 +1,14 @@
# Template file for 'libluv'
pkgname=libluv
version=1.32.0.0
revision=1
revision=2
_distver="${version%.*}-${version##*.}"
wrksrc=luv-${_distver}
build_style=cmake
configure_args="-DLUA_BUILD_TYPE=System -DBUILD_MODULE=OFF -DBUILD_SHARED_LIBS=ON"
makedepends="libuv-devel LuaJIT-devel"
depends="lua libuv LuaJIT"
short_desc="Bare libuv bindings for lua"
depends="libuv LuaJIT"
short_desc="Bare libuv bindings for LuaJIT"
maintainer="andry-dev <peketribal2@gmail.com>"
license="Apache-2.0"
homepage="https://github.com/luvit/luv"