diff options
Diffstat (limited to 'meta-oe/recipes-support/uthash/uthash_2.2.0.bb')
| -rw-r--r-- | meta-oe/recipes-support/uthash/uthash_2.2.0.bb | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/uthash/uthash_2.2.0.bb b/meta-oe/recipes-support/uthash/uthash_2.2.0.bb new file mode 100644 index 0000000000..4ec7bc2f5e --- /dev/null +++ b/meta-oe/recipes-support/uthash/uthash_2.2.0.bb | |||
| @@ -0,0 +1,46 @@ | |||
| 1 | SUMMARY = "Hash table and linked list for C structures" | ||
| 2 | DESCRIPTION = " uthash-dev provides a hash table implementation using C preprocessor macros.\n\ | ||
| 3 | This package also includes:\n\ | ||
| 4 | * utlist.h provides linked list macros for C structures\n\ | ||
| 5 | * utarray.h implements dynamic arrays using macros\n\ | ||
| 6 | * utstring.h implements a basic dynamic string\n\ | ||
| 7 | " | ||
| 8 | HOMEPAGE = "https://troydhanson.github.io/uthash/" | ||
| 9 | SECTION = "base" | ||
| 10 | LICENSE = "BSD-1-Clause" | ||
| 11 | LIC_FILES_CHKSUM = "file://LICENSE;md5=6891c324eb59289db33bac74d4cbb0d4" | ||
| 12 | SRCREV = "66e2668795d0aaf4977523f828e548470a680c33" | ||
| 13 | |||
| 14 | SRC_URI = "\ | ||
| 15 | git://github.com/troydhanson/${BPN}.git \ | ||
| 16 | file://run-ptest \ | ||
| 17 | " | ||
| 18 | |||
| 19 | S = "${WORKDIR}/git" | ||
| 20 | |||
| 21 | inherit ptest | ||
| 22 | |||
| 23 | do_compile[noexec] = "1" | ||
| 24 | |||
| 25 | do_compile_ptest() { | ||
| 26 | oe_runmake -C tests tests_only TEST_TARGET= | ||
| 27 | } | ||
| 28 | |||
| 29 | do_install () { | ||
| 30 | install -dm755 ${D}${includedir} | ||
| 31 | install -m0644 src/*.h ${D}${includedir} | ||
| 32 | } | ||
| 33 | |||
| 34 | do_install_ptest() { | ||
| 35 | install -dm755 ${D}${PTEST_PATH}/tests | ||
| 36 | install -m0755 tests/test*[0-9] ${D}${PTEST_PATH}/tests | ||
| 37 | install -m0644 tests/test*[0-9].ans ${D}${PTEST_PATH}/tests | ||
| 38 | install -m0644 tests/test*[0-9].dat ${D}${PTEST_PATH}/tests | ||
| 39 | } | ||
| 40 | |||
| 41 | # The main package is empty and non-existent, so -dev | ||
| 42 | # should not depend on it... | ||
| 43 | RDEPENDS_${PN}-dev = "" | ||
| 44 | RDEPENDS_${PN}-ptest_remove = "${PN}" | ||
| 45 | |||
| 46 | BBCLASSEXTEND = "native" | ||
