Merge oe-devel@oe-devel.bkbits.net:packages
[openembedded.git] / eet / eet_cvs.oe
1 DESCRIPTION = "EET is a tiny library designed to write an \
2 arbitary set of chunks of data to a file and optionally compress \
3 each chunk (very much like a zip file) and allow fast \
4 random-access reading of the file later on."
5 LICENSE = "MIT"
6 SECTION = "e/libs"
7 MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
8 DEPENDS = "zlib jpeg"
9 PV = "${CVSDATE}"
10 PR = "r3"
11
12 SRC_URI = "cvs://anonymous@cvs.sourceforge.net/cvsroot/enlightenment;module=e17/libs/eet"
13 S = "${WORKDIR}/eet"
14
15 inherit autotools pkgconfig binconfig
16
17 do_stage () {
18         oe_libinstall -C src/lib libeet ${STAGING_LIBDIR}/
19         install -m 0644 ${S}/src/lib/Eet.h ${STAGING_INCDIR}/
20 }
21
22 FILES_${PN} = "${libdir}/libeet*.so*"
23 FILES_${PN}-dev += "${bindir} ${libdir}/pkgconfig"
24