blob: 6df9b66a78444fef957ac921777e8c3ece75bd1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# 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"
INC_PR = "r1"
SRC_URI = "${SOURCEFORGE_MIRROR}/libdbi/libdbi-${PV}.tar.gz"
inherit autotools
EXTRA_OECONF = "--disable-docs"
do_stage () {
autotools_stage_includes
cd ./src/.libs/
oe_libinstall -so libdbi ${STAGING_LIBDIR}
}
do_configure () {
autotools_do_configure
}
|