diff options
| author | Koen Kooi <koen@openembedded.org> | 2009-09-23 00:15:58 +0200 |
|---|---|---|
| committer | Koen Kooi <koen@openembedded.org> | 2009-09-23 00:15:58 +0200 |
| commit | 00f166d4fdb5ff5b966daa12a7a29cbbeeec4e8c (patch) | |
| tree | a8666fdaac1553e139a05b91ca2bcfa1563e1732 /recipes/sqlite | |
| parent | da4dfa8b6fb0750c8013cf05209e3aeedaccee66 (diff) | |
| parent | 9887524ae3b1acd6ece8d85eaab2a6c7b5c8e1aa (diff) | |
Merge branch 'org.openembedded.dev' of git@git.openembedded.org:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/sqlite')
| -rw-r--r-- | recipes/sqlite/sqlite_2.8.17.bb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/recipes/sqlite/sqlite_2.8.17.bb b/recipes/sqlite/sqlite_2.8.17.bb index 9f6ec7efe2..5c873d2814 100644 --- a/recipes/sqlite/sqlite_2.8.17.bb +++ b/recipes/sqlite/sqlite_2.8.17.bb @@ -4,12 +4,12 @@ SECTION = "libs" PRIORITY = "optional" DEPENDS = "readline ncurses" LICENSE = "PD" -PR = "r3" +PR = "r4" SRC_URI = "http://www.hwaci.com/sw/sqlite/sqlite-${PV}.tar.gz \ file://mainmk_build_dynamic.patch;patch=1 \ file://mainmk_no_tcl.patch;patch=1 \ - file://sqlite.pc" + file://sqlite.pc" SOURCES = "attach.o auth.o btree.o btree_rb.o build.o copy.o date.o delete.o \ expr.o func.o hash.o insert.o main.o opcodes.o os.o pager.o \ @@ -20,6 +20,8 @@ inherit autotools pkgconfig do_configure() { echo "main.mk is patched, no need to configure" + # make pkgconfig.bbclass pick this up + mv ${WORKDIR}/sqlite.pc ${S} } do_compile() { @@ -39,9 +41,6 @@ do_stage() { ln -sf libsqlite.so.0.8.6 ${STAGING_LIBDIR}/libsqlite.so.0 ln -sf libsqlite.so.0.8.6 ${STAGING_LIBDIR}/libsqlite.so.0.8 install -m 0644 sqlite.h ${STAGING_INCDIR} - - # make pkgconfig.bbclass pick this up - mv ${WORKDIR}/sqlite.pc ${S} } do_install() { @@ -53,9 +52,10 @@ do_install() { ln -sf libsqlite.so.0.8.6 ${D}${libdir}/libsqlite.so.0.8 install -d ${D}${includedir} install -m 0644 sqlite.h ${D}${includedir}/sqlite.h + install -d ${D}${libdir}/pkgconfig + install -m 0644 ${S}/sqlite.pc ${D}${libdir}/pkgconfig/sqlite.pc } PACKAGES += "${PN}-bin" FILES_${PN}-bin = "${bindir}/*" FILES_${PN} = "${libdir}/*.so.*" - |
