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