Babak Sarashki 63b6601bdd meta-stx: update LICENSE and copyright info
- Change License from Apache2 to MIT.
- Remove Copyright from individual recipes
- Move License to README.md
- Add meta-stx Copyright to README.md

Signed-off-by: Babak Sarashki <Babak.SarAshki@windriver.com>
2020-06-08 13:00:26 -07:00

38 lines
1.4 KiB
BlitzBasic

SUMMARY = "Event loop abstraction for Libraries"
DESCRIPTION = "Libverto exists to isolate libraries from the particular event loop \
chosen by an application. Libverto provides an asynchronous \
programming interface independent of any particular event loop and \
allows applications to attach this interface to whatever event loop \
they select."
HOMEPAGE = "http://fedorahosted.net/libverto"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://COPYING;md5=bc8917ab981cfa6161dc29319a4038d9"
DEPENDS += "libevent libtevent"
# fedorahosted tarball cannot be fetched completely, so switch to use other source
# SRC_URI = "http://fedorahosted.org/releases/l/i/${PN}/${PN}-${PV}.tar.gz"
SRC_URI = "https://github.com/latchset/libverto/releases/download/0.2.5/${PN}-${PV}.tar.gz \
"
SRC_URI[md5sum] = "144fb8f00759ef8ad71c472333847f03"
inherit autotools pkgconfig
PACKAGECONFIG ??= "libevent tevent"
PACKAGECONFIG[glib] = "--with-glib,--without-glib,glib-2.0"
PACKAGECONFIG[libev] = "--with-libev,--without-libev,libev"
PACKAGECONFIG[libevent] = "--with-libevent,--without-libevent,libevent"
PACKAGECONFIG[tevent] = "--with-tevent,--without-tevent,libtevent"
PACKAGES =+ "${PN}-libevent ${PN}-tevent"
FILES_${PN}-libevent = "${libdir}/libverto-libevent${SOLIBS}"
FILES_${PN}-tevent = "${libdir}/libverto-tevent${SOLIBS}"
RPROVIDES_${PN}-libevent += "${PN}-module-base"
RPROVIDES_${PN}-tevent += "${PN}-module-base"