blob: 7cbbac2dfe460e27c617f297ea78ef92a16a6dd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
DESCRIPTION = "The libevent API provides a mechanism to execute a callback function \
when a specific event occurs on a file descriptor or after a timeout has been reached. \
Furthermore, libevent also support callbacks due to signals or regular timeouts."
HOMEPAGE = "http://www.monkey.org/~provos/libevent/"
SECTION = "libs"
AUTHOR = "Niels Provos <provos@citi.umich.edu>"
LICENSE = "BSD"
SRC_URI = "http://monkey.org/~provos/libevent-${PV}.tar.gz"
inherit autotools
do_stage() {
autotools_stage_all
}
|