blob: c519dff52482097b1595e52c0d035b12ed7ba948 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001meta-perl
2=========
3This layer provides commonly-used perl related recipes such as perl libraries
4in the Comprehensive Perl Archive Network.
5
6Contents and Help
7-----------------
8
9In this section the contents of the layer is listed, along with a short
10help for each package.
11
12 -- libdbi-perl --
13 The DBI is a database access module for the Perl programming language.
14 It defines a set of methods, variables, and conventions that provide
15 a consistent database interface, independent of the actual database
16 being used.
17 |<- Scope of DBI ->|
18 .-. .--------------. .-------------.
19 .-------. | |---| XYZ Driver |---| XYZ Engine |
20 | Perl | | | `--------------' `-------------'
21 | script| |A| |D| .--------------. .-------------.
22 | using |--|P|--|B|---|Oracle Driver |---|Oracle Engine|
23 | DBI | |I| |I| `--------------' `-------------'
24 | API | | |...
25 |methods| | |... Other drivers
26 `-------' | |...
27 `-'
28
29 -- libdbd-sqlite-perl --
30 DBD::SQLite is a Perl DBI driver for SQLite, that includes the entire
31 thing in the distribution. So in order to get a fast transaction capable
32 RDBMS working for your perl project you simply have to install this
33 module, and nothing else.
34
35 usage: there is a test case to show you how it works
36
37 1) vim local.conf:
38 ...
Patrick Williams213cb262021-08-07 19:21:33 -050039 IMAGE_INSTALL:append = " libdbd-sqlite-perl"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050040 PERL_DBM_TEST = "1"
41 ...
42 2) build core-image-sato and boot the target
43
44 3) run "sqlite-perl-test.pl" on target. This script includes five
45 operations create/insert/update/delete/select to do with a table.
46
47 More information can be found in the recipe's git log.
48
49Dependencies
50------------
51
52This layer depends on:
53
54 URI: git://git.openembedded.org/openembedded-core
Brad Bishop19323692019-04-05 15:28:33 -040055 branch: master
Patrick Williamsb48b7b42016-08-17 15:04:38 -050056 revision: HEAD
57 prio: default
58
59Adding the meta-perl layer to your build
60---------------------------------------
61
62In order to use this layer, you need to make the build system aware of
63it.
64
65Assuming the meta-perl layer exists at the top-level of your
66yocto build tree, you can add it to the build system by adding the
67location of the meta-perl layer to bblayers.conf, along with any
68other layers needed. e.g.:
69
70 BBLAYERS ?= " \
71 /path/to/oe-core/meta \
72 /path/to/layer/meta-perl \
73
74Maintenance
75-----------
76
77Send patches / pull requests to openembedded-devel@lists.openembedded.org with
Brad Bishop19323692019-04-05 15:28:33 -040078'[meta-perl]' in the subject.
Patrick Williamsb48b7b42016-08-17 15:04:38 -050079
80When sending single patches, please using something like:
Andrew Geissler69721092021-07-23 12:57:00 -040081git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix='meta-perl][PATCH'
Patrick Williamsb48b7b42016-08-17 15:04:38 -050082
Brad Bishop19323692019-04-05 15:28:33 -040083Layer maintainers:
84 Hongxu Jia <hongxu.jia@windriver.com>
85 Tim "moto-timo" Orling <ticotimo@gmail.com>
Patrick Williamsb48b7b42016-08-17 15:04:38 -050086
87License
88-------
89
90All metadata is MIT licensed unless otherwise stated. Source code included
91in tree for individual recipes is under the LICENSE stated in each recipe
92(.bb file) unless otherwise stated.