main/libevent: add disabled check

This commit is contained in:
tcely 2018-03-28 22:09:27 -04:00 committed by Timo Teräs
parent 57f061b63a
commit e7e38e3a1f

View File

@ -8,6 +8,7 @@ pkgdesc="An event notification library"
url="http://libevent.org/"
arch="all"
license="BSD-3-Clause"
options="!check" # regression tests failed
depends_dev="python2"
makedepends="$depends_dev libressl-dev"
subpackages="$pkgname-dev"
@ -40,6 +41,11 @@ build() {
make
}
check() {
cd "$builddir"
make -j1 check
}
package() {
cd "$builddir"
make -j1 DESTDIR=$pkgdir install