blob: 04e174e1666604426268ada91dd88649200c2b18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
DESCRIPTION = "GNU dbm is a set of database routines that use extensible hashing."
SECTION = "libs"
PRIORITY = "optional"
SRC_URI = "${GNU_MIRROR}/gdbm/gdbm-${PV}.tar.gz \
file://${FILESDIR}/makefile.patch;patch=1"
inherit autotools
do_configure_prepend() {
rm -f aclocal.m4
}
do_stage () {
oe_libinstall -so -a libgdbm ${STAGING_LIBDIR}
install -m 0644 ${S}/gdbm.h ${STAGING_INCDIR}/
}
|