blob: 873789036854dab3160ec69b088153356da6e4b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# libdbi OE build file
# Copyright (C) 2005, Koninklijke Philips Electronics NV. All Rights Reserved
# Released under the MIT license (see packages/COPYING)
DESCRIPTION = "Database Independent Abstraction Layer for C"
HOMEPAGE = "http://libdbi.sourceforge.net/"
LICENSE = "LGPL"
SECTION = "libs"
SRC_URI = "${SOURCEFORGE_MIRROR}/libdbi/libdbi-${PV}.tar.gz"
inherit autotools
do_stage () {
autotools_stage_includes
cd ./src/.libs/
oe_libinstall -so libdbi ${STAGING_LIBDIR}
}
do_configure () {
autotools_do_configure
}
|