summaryrefslogtreecommitdiffstats
path: root/recipes-connectivity/openssl/ocf-linux.inc
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-01-07 12:08:20 +0100
committerKoen Kooi <koen@dominion.thruhere.net>2011-01-07 12:08:20 +0100
commitfb874704c38c98bbcc2787aa41a2ee46f2a0b465 (patch)
tree4c43b7ecaff6e97c256a2183b64fa47e993dc187 /recipes-connectivity/openssl/ocf-linux.inc
parentee3afcda723f16630bbe4b2f4c5c0d93c587dd88 (diff)
downloadmeta-openembedded-fb874704c38c98bbcc2787aa41a2ee46f2a0b465.tar.gz
openssl: import 1.0.0c from OE, drop 1.0.0a
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'recipes-connectivity/openssl/ocf-linux.inc')
-rw-r--r--recipes-connectivity/openssl/ocf-linux.inc23
1 files changed, 23 insertions, 0 deletions
diff --git a/recipes-connectivity/openssl/ocf-linux.inc b/recipes-connectivity/openssl/ocf-linux.inc
new file mode 100644
index 0000000000..9d8e08911c
--- /dev/null
+++ b/recipes-connectivity/openssl/ocf-linux.inc
@@ -0,0 +1,23 @@
1DESCRIPTION = "Install required headers to enable OCF Linux support"
2LICENSE = "BSD"
3
4INC_PR = "r0"
5
6SRC_URI = "http://sourceforge.net/projects/ocf-linux/files/ocf-linux/${PV}/ocf-linux-${PV}.tar.gz"
7
8S = "${WORKDIR}/ocf-linux-${PV}"
9
10# Need to unpack the the ocf-linux.tar.gz file contained inside the
11# downloaded tarball
12do_install_prepend() {
13 cd ${S}
14 tar xzf ocf-linux.tar.gz
15}
16
17# Install the OCF Linux headers so that other packages such as openssl
18# can find them. The headers must be in a crypto directory according to
19# the README file.
20do_install() {
21 install -d ${D}${includedir}/crypto
22 install -m 0644 ${S}/ocf/*.h ${D}${includedir}/crypto/
23}