main/hexchat: fix build with lua

This commit is contained in:
Natanael Copa 2016-05-16 14:37:50 +00:00
parent 6cf63f3c09
commit 86c5cd4b68

View File

@ -8,7 +8,7 @@ arch="all"
license="GPL2+"
depends=""
makedepends="gtk+2.0-dev openssl-dev dbus-glib-dev perl-dev
libsexy-dev python-dev libnotify-dev libproxy-dev
libsexy-dev python-dev libnotify-dev libproxy-dev lua5.3-dev
bash libtool autoconf automake"
install=""
subpackages="$pkgname-doc $pkgname-lang $pkgname-python:_python"
@ -27,6 +27,7 @@ prepare() {
build() {
cd "$_builddir"
LUA=lua5.3 \
./configure --prefix=/usr \
--sysconfdir=/etc \
--enable-openssl \
@ -34,9 +35,7 @@ build() {
--disable-textfe \
--disable-perl \
--enable-python \
--enable-ipv6 \
--enable-shm \
--enable-spell=libsexy \
--enable-lua \
|| return 1
make || return 1
}