blob: 480b86916919271000122f08953e6f0cccf29b09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# cppunit OE build file
# Copyright (C) 2005, Koninklijke Philips Electronics NV. All Rights Reserved
# Released under the MIT license (see packages/COPYING)
DESCRIPTION = "Unit Testing Library for C++"
HOMEPAGE = "http://cppunit.sourceforge.net/"
LICENSE = "LGPL"
SECTION = "devel"
MAINTAINER = "Eddy Pronk <epronk@muftor.com>"
SRC_URI = "${SOURCEFORGE_MIRROR}/cppunit/cppunit-${PV}.tar.gz"
inherit autotools
do_stage () {
autotools_stage_includes
cd ./src/cppunit/.libs/
oe_libinstall -a -so libcppunit ${STAGING_LIBDIR}
}
|