diff options
author | Mingli Yu <Mingli.Yu@windriver.com> | 2016-09-26 13:31:21 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-10-03 19:19:54 +0200 |
commit | 934104ca944069817da51f70c764dae6cc66c87b (patch) | |
tree | c0d9d8385ded01d1f8b47884d7f58e32679f85d6 | |
parent | 67d6ed40bfeb219490e509f33c27ebd2a1149d30 (diff) | |
download | meta-openembedded-934104ca944069817da51f70c764dae6cc66c87b.tar.gz |
libdbd-mysql-perl: add new recipe
* Add new recipe libdbd-mysql-perl as mariadb-server
rdepends on it
Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-devtools/perl/libdbd-mysql-perl_4.036.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/perl/libdbd-mysql-perl_4.036.bb b/meta-oe/recipes-devtools/perl/libdbd-mysql-perl_4.036.bb new file mode 100644 index 000000000..f5dbef2af --- /dev/null +++ b/meta-oe/recipes-devtools/perl/libdbd-mysql-perl_4.036.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | SUMMARY = "A Perl DBI driver for MySQL" | ||
2 | DESCRIPTION = "DBD::mysql is the Perl5 Database Interface driver for \ | ||
3 | the MySQL database. In other words: DBD::mysql is an interface between \ | ||
4 | the Perl programming language and the MySQL programming API that comes \ | ||
5 | with the MySQL relational database management system. Most functions \ | ||
6 | provided by this programming API are supported. Some rarely used \ | ||
7 | functions are missing, mainly because no-one ever requested them. \ | ||
8 | " | ||
9 | HOMEPAGE = "http://search.cpan.org/~michielb/DBD-mysql-4.036/lib/DBD/mysql.pm" | ||
10 | |||
11 | SECTION = "libs" | ||
12 | LICENSE = "Artistic-1.0 | GPL-1.0+" | ||
13 | DEPENDS += "libdbi-perl-native libmysqlclient" | ||
14 | |||
15 | LIC_FILES_CHKSUM = "file://LICENSE;md5=d0a06964340e5c0cde88b7af611f755c" | ||
16 | |||
17 | SRC_URI = "http://search.cpan.org/CPAN/authors/id/M/MI/MICHIELB/DBD-mysql-${PV}.tar.gz \ | ||
18 | " | ||
19 | |||
20 | SRC_URI[md5sum] = "fdee1d8dc4ae54bc6cb7cd5a3f3d3342" | ||
21 | SRC_URI[sha256sum] = "5c48a823f86b8110ccb6504c6176ca248b52f56829dd4548bc39c3509f4154cf" | ||
22 | |||
23 | S = "${WORKDIR}/DBD-mysql-${PV}" | ||
24 | |||
25 | inherit cpan | ||