diff options
author | Jeff Hatch <jhatch@multitech.com> | 2018-10-31 16:00:46 -0500 |
---|---|---|
committer | Jeff Hatch <jhatch@multitech.com> | 2018-10-31 16:00:46 -0500 |
commit | 4f1474a121b3359b60124e204c977765fe6f212d (patch) | |
tree | 879b5887244f0b36506fb3885b5d7b1a8da21120 /recipes-support/multitech/libmts-io_1.0.13.bb | |
parent | 6dcec01f10e5cd1a205f9f34205b4a4c7652681f (diff) | |
download | meta-mlinux-4f1474a121b3359b60124e204c977765fe6f212d.tar.gz meta-mlinux-4f1474a121b3359b60124e204c977765fe6f212d.tar.bz2 meta-mlinux-4f1474a121b3359b60124e204c977765fe6f212d.zip |
Update libmts-io to v1.0.13 to include LE910C1-NS (LSP3) radio
Diffstat (limited to 'recipes-support/multitech/libmts-io_1.0.13.bb')
-rw-r--r-- | recipes-support/multitech/libmts-io_1.0.13.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/recipes-support/multitech/libmts-io_1.0.13.bb b/recipes-support/multitech/libmts-io_1.0.13.bb new file mode 100644 index 0000000..34115be --- /dev/null +++ b/recipes-support/multitech/libmts-io_1.0.13.bb @@ -0,0 +1,30 @@ +DESCRIPTION = "MultiTech IO C++ Library" +HOMEPAGE = "http://www.multitech.net/" +LICENSE = "LGPL-2.1" +LIC_FILES_CHKSUM = "file://LICENSE;md5=4fbd65380cdd255951079008b364516c" + +DEPENDS = "libmts jsoncpp cmake-native cppunit" +BBCLASSEXTEND = "native" + +PR = "r0" +SRCREV = "${PV}" +SRC_URI = "git://git.multitech.net/libmts-io;branch=master" + +S = "${WORKDIR}/git" + +do_compile() { + oe_runmake +} + +# build and run tests for native recipe +do_compile_append_virtclass-native() { + cd test + cmake . + oe_runmake + ./TestRunnerClient +} + +do_install() { + oe_runmake install DESTDIR=${D} +} + |