diff --git a/common/shlibs b/common/shlibs index 4ccdbcf6153..9948c8a8b7c 100644 --- a/common/shlibs +++ b/common/shlibs @@ -3044,3 +3044,8 @@ libVkLayer_parameter_validation.so vulkan-validation-layers-1.0.57.0_1 libVkLayer_threading.so vulkan-validation-layers-1.0.57.0_1 libVkLayer_unique_objects.so vulkan-validation-layers-1.0.57.0_1 libVkLayer_utils.so vulkan-validation-layers-1.0.57.0_1 +libembb_mtapi_cpp.so embb-devel-1.0.0_1 +libembb_mtapi_c.so embb-devel-1.0.0_1 +libembb_mtapi_network_c.so embb-devel-1.0.0_1 +libembb_base_cpp.so embb-devel-1.0.0_1 +libembb_base_c.so embb-devel-1.0.0_1 diff --git a/srcpkgs/embb-devel b/srcpkgs/embb-devel new file mode 120000 index 00000000000..25597b7423b --- /dev/null +++ b/srcpkgs/embb-devel @@ -0,0 +1 @@ +embb \ No newline at end of file diff --git a/srcpkgs/embb-doc b/srcpkgs/embb-doc new file mode 120000 index 00000000000..25597b7423b --- /dev/null +++ b/srcpkgs/embb-doc @@ -0,0 +1 @@ +embb \ No newline at end of file diff --git a/srcpkgs/embb/template b/srcpkgs/embb/template new file mode 100644 index 00000000000..301d38f9d7c --- /dev/null +++ b/srcpkgs/embb/template @@ -0,0 +1,34 @@ +# Template file for 'embb' +pkgname=embb +version=1.0.0 +revision=1 +build_style=cmake +configure_args="-DUSE_C11_AND_CXX11=ON -DBUILD_SHARED_LIBS=ON -DBUILD_TESTS=OFF -DINSTALL_PREFIX=/usr" +short_desc="Library for parallel programming of embedded systems" +maintainer="Florian Eich " +license="BSD-2" +homepage="https://embb.io/" +distfiles="https://github.com/siemens/embb/releases/download/v${version}/embb-${version}.tar.gz" +checksum=a392c710df719bbb1513dd9a6835ab9d73494d7355a47f17e818179fea64dcc8 + +post_install() { + vlicense COPYING.md +} + +embb-devel_package() { + short_desc+=" - development files" + depends="${sourcepkg}>=${version}_${revision}" + pkg_install() { + vmove usr/include + vmove usr/lib/*.a + vmove usr/lib/*.so + } +} + +embb-doc_package() { + short_desc+=" - documentation" + depends="${sourcepkg}>=${version}_${revision}" + pkg_install() { + vmove usr/share/doc + } +}