diff options
author | Derek Straka <derek@asterius.io> | 2017-05-23 17:30:38 -0400 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-06-05 11:01:45 +0200 |
commit | 0e831c2bf6afd00d585ef2000ad3550b8f7c4b64 (patch) | |
tree | 37bdf78d9aef993f9cbbbb7733cc74430caafde3 /meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.54.bb | |
parent | 7661425b9ac3f9d550bc74cc612f40d3c74299e0 (diff) | |
download | meta-openembedded-0e831c2bf6afd00d585ef2000ad3550b8f7c4b64.tar.gz |
libdbd-sqlite-perl: update to version 1.54
Signed-off-by: Derek Straka <derek@asterius.io>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.54.bb')
-rw-r--r-- | meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.54.bb | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.54.bb b/meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.54.bb new file mode 100644 index 0000000000..0b27b5cb1c --- /dev/null +++ b/meta-perl/recipes-perl/libdb/libdbd-sqlite-perl_1.54.bb | |||
@@ -0,0 +1,39 @@ | |||
1 | SUMMARY = "A Perl DBI driver for SQLite" | ||
2 | DESCRIPTION = "DBD::SQLite is a Perl DBI driver for SQLite, that includes the entire \ | ||
3 | thing in the distribution. So in order to get a fast transaction capable \ | ||
4 | RDBMS working for your perl project you simply have to install this \ | ||
5 | module, and nothing else. \ | ||
6 | " | ||
7 | HOMEPAGE = "http://search.cpan.org/~ishigaki/DBD-SQLite/" | ||
8 | |||
9 | SECTION = "libs" | ||
10 | LICENSE = "Artistic-1.0 | GPL-1.0+" | ||
11 | DEPENDS += "libdbi-perl-native" | ||
12 | RDEPENDS_${PN} += "libdbi-perl \ | ||
13 | sqlite3 \ | ||
14 | perl-module-constant \ | ||
15 | perl-module-locale \ | ||
16 | perl-module-tie-hash \ | ||
17 | " | ||
18 | |||
19 | LIC_FILES_CHKSUM = "file://LICENSE;md5=1726e2117494ba3e13e1c3d93f795360" | ||
20 | |||
21 | SRC_URI = "http://search.cpan.org/CPAN/authors/id/I/IS/ISHIGAKI/DBD-SQLite-${PV}.tar.gz \ | ||
22 | file://sqlite-perl-test.pl \ | ||
23 | " | ||
24 | |||
25 | SRC_URI[md5sum] = "8f835ddacb9a4a92a52bbe2d24d18a8e" | ||
26 | SRC_URI[sha256sum] = "3929a6dbd8d71630f0cb57f85dcef9588cd7ac4c9fa12db79df77b9d3a4d7269" | ||
27 | |||
28 | S = "${WORKDIR}/DBD-SQLite-${PV}" | ||
29 | |||
30 | inherit cpan | ||
31 | |||
32 | BBCLASSEXTEND = "native" | ||
33 | |||
34 | do_install_append() { | ||
35 | if [ ${PERL_DBM_TEST} = "1" ]; then | ||
36 | install -m 755 -D ${WORKDIR}/sqlite-perl-test.pl ${D}/${bindir}/sqlite-perl-test.pl | ||
37 | fi | ||
38 | } | ||
39 | |||