diff options
| author | Saul Wold <sgw@linux.intel.com> | 2014-06-24 17:13:11 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-25 13:51:46 +0100 |
| commit | 1bcd736e736cef81875f4310aed309d1e7690f66 (patch) | |
| tree | 7fd4de6fa6cc6e0180ceab1d73fecca47b4aefe8 /meta/recipes-support/sqlite/sqlite3_3.8.5.0.bb | |
| parent | 02a6b7b205bb928b778b88a17e7c86bcbc74b069 (diff) | |
| download | poky-1bcd736e736cef81875f4310aed309d1e7690f66.tar.gz | |
sqlite3: Update to 3.8.5.0
(From OE-Core rev: 6b3ac5de53417f130f5335b88aa78f1bd655c4e0)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/sqlite/sqlite3_3.8.5.0.bb')
| -rw-r--r-- | meta/recipes-support/sqlite/sqlite3_3.8.5.0.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/recipes-support/sqlite/sqlite3_3.8.5.0.bb b/meta/recipes-support/sqlite/sqlite3_3.8.5.0.bb new file mode 100644 index 0000000000..244816bb9b --- /dev/null +++ b/meta/recipes-support/sqlite/sqlite3_3.8.5.0.bb | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | require sqlite3.inc | ||
| 2 | |||
| 3 | LIC_FILES_CHKSUM = "file://sqlite3.h;endline=11;md5=65f0a57ca6928710b418c094b3570bb0" | ||
| 4 | |||
| 5 | def sqlite_download_version(d): | ||
| 6 | pvsplit = d.getVar('PV', True).split('.') | ||
| 7 | return pvsplit[0] + ''.join([part.rjust(2,'0') for part in pvsplit[1:]]) | ||
| 8 | |||
| 9 | PE = "3" | ||
| 10 | SQLITE_PV = "${@sqlite_download_version(d)}" | ||
| 11 | SRC_URI = "http://www.sqlite.org/2014/sqlite-autoconf-${SQLITE_PV}.tar.gz" | ||
| 12 | |||
| 13 | S = "${WORKDIR}/sqlite-autoconf-${SQLITE_PV}" | ||
| 14 | |||
| 15 | SRC_URI[md5sum] = "0544ef6d7afd8ca797935ccc2685a9ed" | ||
| 16 | SRC_URI[sha256sum] = "98c33abe4106e508e73fda648b2657ac9e969fe24695f543dcde68cc71f3091b" | ||
| 17 | |||
| 18 | # Provide column meta-data API | ||
| 19 | BUILD_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA" | ||
| 20 | TARGET_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA" | ||
| 21 | |||
