blob: adf5108c12ffada03ce5fce89d06a0d32f3ee4a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
DESCRIPTION = "a C++ class library for writing CGI applications"
HOMEPAGE = "http://www.cgicc.org/"
LICENSE = "LGPL"
MAINTAINER = "Bruno Randolf <bruno.randolf@4g-systems.biz>"
SRC_URI = "http://www.cgicc.org/files/cgicc-${PV}.tar.bz2"
S = "${WORKDIR}/cgicc-${PV}"
inherit autotools
do_stage () {
install -d ${STAGING_INCDIR}/cgicc
cp -LR cgicc/*.h ${STAGING_INCDIR}/cgicc
oe_libinstall -C cgicc libcgicc ${STAGING_LIBDIR}
}
|