diff options
author | Andreas Müller <schnitzeltony@googlemail.com> | 2015-10-30 12:26:31 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-11-06 17:49:35 +0100 |
commit | 2891b1654d81147344364093dc823d57a862ef80 (patch) | |
tree | 1f782fa8eca05ded104dab6bd1975569d00409d1 /meta-oe | |
parent | 165de549b7a80a3a93c5ab1cc54b197101ffd2cf (diff) | |
download | meta-openembedded-2891b1654d81147344364093dc823d57a862ef80.tar.gz |
gnulib: move meta-networking -> meta-oe
A more common place is required for gnulib because of other recipes (e.g
fontforge) will depend on it
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-support/gnulib/gnulib_git.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/gnulib/gnulib_git.bb b/meta-oe/recipes-support/gnulib/gnulib_git.bb new file mode 100644 index 000000000..a06450261 --- /dev/null +++ b/meta-oe/recipes-support/gnulib/gnulib_git.bb | |||
@@ -0,0 +1,32 @@ | |||
1 | SUMMARY = "The GNU portability library" | ||
2 | DESCRIPTION = "A collection of software subroutines which are designed to \ | ||
3 | be usable on many operating systems. The goal of the project \ | ||
4 | is to make it easy for free software authors to make their \ | ||
5 | software run on many operating systems. Since source is designed \ | ||
6 | to be copied from gnulib, it is not a library per-se, as much \ | ||
7 | as a collection of portable idioms to be used in other projects." | ||
8 | |||
9 | HOMEPAGE = "http://www.gnu.org/software/gnulib/" | ||
10 | SECTION = "devel" | ||
11 | LICENSE = "LGPLv2+" | ||
12 | |||
13 | LIC_FILES_CHKSUM = "file://COPYING;md5=e4cf3810f33a067ea7ccd2cd889fed21" | ||
14 | SRCREV = "24379a9217fa4bd62685795aaaa010fd90ced9e3" | ||
15 | SRC_URI = "git://git.sv.gnu.org/gnulib;protocol=git \ | ||
16 | " | ||
17 | S = "${WORKDIR}/git" | ||
18 | |||
19 | do_install () { | ||
20 | cd ${S} | ||
21 | git checkout master | ||
22 | git clone ${S} ${D}/${datadir}/gnulib | ||
23 | } | ||
24 | |||
25 | do_patch[noexec] = "1" | ||
26 | do_configure[noexec] = "1" | ||
27 | do_compile[noexec] = "1" | ||
28 | do_package[noexec] = "1" | ||
29 | do_packagedata[noexec] = "1" | ||
30 | do_package_write_ipk[noexec] = "1" | ||
31 | do_package_write_deb[noexec] = "1" | ||
32 | do_package_write_rpm[noexec] = "1" | ||