diff options
Diffstat (limited to 'meta-openstack/recipes-devtools/ruby')
| -rw-r--r-- | meta-openstack/recipes-devtools/ruby/http-parser.rb_0.6.0.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/ruby/http-parser.rb_0.6.0.bb b/meta-openstack/recipes-devtools/ruby/http-parser.rb_0.6.0.bb new file mode 100644 index 0000000..db52ebd --- /dev/null +++ b/meta-openstack/recipes-devtools/ruby/http-parser.rb_0.6.0.bb | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | SUMMARY = "simple callback-based HTTP request/response parser" | ||
| 2 | HOMEPAGE = "https://rubygems.org/gems/http_parser.rb" | ||
| 3 | |||
| 4 | LICENSE = "MIT" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE-MIT;md5=157efc3766c6d07d3d857ebbab43351a" | ||
| 6 | |||
| 7 | SRC_URI = "git://github.com/tmm1/http_parser.rb.git;protocol=https;tag=v0.6.0" | ||
| 8 | |||
| 9 | S = "${WORKDIR}/git" | ||
| 10 | |||
| 11 | # Bitbake doesn't allow the underscore in file name, hence the dash | ||
| 12 | SRCNAME = "http_parser.rb" | ||
| 13 | |||
| 14 | DEPENDS = "git" | ||
| 15 | |||
| 16 | inherit ruby | ||
| 17 | |||
| 18 | # Download the submodules | ||
| 19 | do_configure_prepend() { | ||
| 20 | cd ${WORKDIR}/git | ||
| 21 | git submodule update --init --recursive | ||
| 22 | } | ||
