diff options
| -rw-r--r-- | meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb | 2 | ||||
| -rw-r--r-- | meta-oe/recipes-support/cpp-netlib/cpp-netlib_git.bb | 26 |
2 files changed, 27 insertions, 1 deletions
diff --git a/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb b/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb index 02ac44d13b..3f476d0518 100644 --- a/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb +++ b/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb | |||
| @@ -946,7 +946,7 @@ RDEPENDS_packagegroup-meta-oe-fortran-packages = "\ | |||
| 946 | # opencl-headers sdbus-c++-libsystemd boost-url nlohmann-fifo sqlite-orm | 946 | # opencl-headers sdbus-c++-libsystemd boost-url nlohmann-fifo sqlite-orm |
| 947 | # nlohmann-json exprtk liblightmodbus p8platform gnome-doc-utils-stub | 947 | # nlohmann-json exprtk liblightmodbus p8platform gnome-doc-utils-stub |
| 948 | # glm ttf-mplus xbitmaps ceres-solver cli11 fftw gnulib libeigen ade | 948 | # glm ttf-mplus xbitmaps ceres-solver cli11 fftw gnulib libeigen ade |
| 949 | # spdlog span-lite uthash websocketpp catch2 properties-cpp | 949 | # spdlog span-lite uthash websocketpp catch2 properties-cpp cpp-netlib |
| 950 | 950 | ||
| 951 | # rsyslog conflicts with syslog-ng so its not included here | 951 | # rsyslog conflicts with syslog-ng so its not included here |
| 952 | 952 | ||
diff --git a/meta-oe/recipes-support/cpp-netlib/cpp-netlib_git.bb b/meta-oe/recipes-support/cpp-netlib/cpp-netlib_git.bb new file mode 100644 index 0000000000..472b72fc2e --- /dev/null +++ b/meta-oe/recipes-support/cpp-netlib/cpp-netlib_git.bb | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | DESCRIPTION = "Modern C++ network programming libraries." | ||
| 2 | |||
| 3 | # This library provides general purpose network functionality such as | ||
| 4 | # socket communication to agent libraries. It was designed to be merged | ||
| 5 | # into boost at some point and follows similar header library approach | ||
| 6 | # for most functionality. | ||
| 7 | |||
| 8 | SECTION = "libs" | ||
| 9 | LICENSE = "BSL-1.0 & MIT & Python-2.0" | ||
| 10 | LIC_FILES_CHKSUM = "file://LICENSE_1_0.txt;md5=e4224ccaecb14d942c71d31bef20d78c" | ||
| 11 | |||
| 12 | SRC_URI = "\ | ||
| 13 | git://github.com/cpp-netlib/cpp-netlib.git;protocol=https;branch=0.13-release \ | ||
| 14 | " | ||
| 15 | SRC_URI[sha256sum] = "0b9255bb0668d89867a1f367d770f12d7038db4f5b6111774ef032f669cccad4" | ||
| 16 | |||
| 17 | SRCREV = "ca95f04d140acf619892ee02a82e930dd91ff7d4" | ||
| 18 | |||
| 19 | S = "${WORKDIR}/git" | ||
| 20 | |||
| 21 | inherit cmake pkgconfig | ||
| 22 | |||
| 23 | DEPENDS = "zlib boost openssl" | ||
| 24 | |||
| 25 | EXTRA_OECMAKE_append = " -DCPP-NETLIB_BUILD_TESTS=OFF -DCPP-NETLIB_BUILD_EXAMPLES=OFF" | ||
| 26 | |||
