diff options
Diffstat (limited to 'recipes-support/multitech')
-rwxr-xr-x | recipes-support/multitech/jsparser/jspp | 9 | ||||
-rw-r--r-- | recipes-support/multitech/jsparser_0.3.bb | 22 | ||||
-rw-r--r-- | recipes-support/multitech/libmts-io_1.0.19.bb | 30 | ||||
-rw-r--r-- | recipes-support/multitech/libmts_0.5.bb | 30 | ||||
-rw-r--r-- | recipes-support/multitech/radio-cmd_0.6.bb | 23 | ||||
-rw-r--r-- | recipes-support/multitech/radio-query_0.8.bb | 22 |
6 files changed, 0 insertions, 136 deletions
diff --git a/recipes-support/multitech/jsparser/jspp b/recipes-support/multitech/jsparser/jspp deleted file mode 100755 index 16b60e1..0000000 --- a/recipes-support/multitech/jsparser/jspp +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -if [ $# -lt 1 ]; then - echo "usage: $0 <filepath>" - echo " prints json in readable format" - exit 1 -fi - -cat $1 | jsparser --jsobj diff --git a/recipes-support/multitech/jsparser_0.3.bb b/recipes-support/multitech/jsparser_0.3.bb deleted file mode 100644 index cd419c6..0000000 --- a/recipes-support/multitech/jsparser_0.3.bb +++ /dev/null @@ -1,22 +0,0 @@ -DESCRIPTION = "MultiTech Command Line JSON Parser" -LICENSE = "GPL-2.0" -LIC_FILES_CHKSUM = "file://LICENSE;md5=94d55d512a9ba36caa9b7df079bae19f" -DEPENDS = "jsoncpp libmts" -RDEPENDS_${PN} += "bash jsoncpp" - -PR = "r0" -SRCREV="${PV}" - -SRC_URI = "git://git.multitech.net/jsparser;branch=master \ - file://jspp \ -" - -S = "${WORKDIR}/git" - -do_install_append() { - oe_runmake install DESTDIR=${D} - install -d ${D}/usr/bin - install -m 755 ${WORKDIR}/jspp ${D}/usr/bin/jspp -} - - diff --git a/recipes-support/multitech/libmts-io_1.0.19.bb b/recipes-support/multitech/libmts-io_1.0.19.bb deleted file mode 100644 index 34115be..0000000 --- a/recipes-support/multitech/libmts-io_1.0.19.bb +++ /dev/null @@ -1,30 +0,0 @@ -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} -} - diff --git a/recipes-support/multitech/libmts_0.5.bb b/recipes-support/multitech/libmts_0.5.bb deleted file mode 100644 index a5deb4b..0000000 --- a/recipes-support/multitech/libmts_0.5.bb +++ /dev/null @@ -1,30 +0,0 @@ -DESCRIPTION = "MultiTech Core C++ Library" -HOMEPAGE = "http://www.multitech.net/" -LICENSE = "LGPL-2.1" -LIC_FILES_CHKSUM = "file://LICENSE;md5=4fbd65380cdd255951079008b364516c" - -DEPENDS = "cmake-native cppunit" -BBCLASSEXTEND = "native nativesdk" - -PR = "r1" -SRCREV = "${PV}" -SRC_URI = "git://git.multitech.net/libmts;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} -} - diff --git a/recipes-support/multitech/radio-cmd_0.6.bb b/recipes-support/multitech/radio-cmd_0.6.bb deleted file mode 100644 index 77fe5dc..0000000 --- a/recipes-support/multitech/radio-cmd_0.6.bb +++ /dev/null @@ -1,23 +0,0 @@ -DESCRIPTION = "MultiTech cellular radio command tool" -HOMEPAGE = "http://www.multitech.net/" -LICENSE = "GPL-2.0" -LIC_FILES_CHKSUM = "file://LICENSE;md5=94d55d512a9ba36caa9b7df079bae19f" - -DEPENDS = "jsoncpp libmts libmts-io" -RDEPENDS_radio-cmd = "jsoncpp" - -PR = "r1" -SRCREV = "${PV}" - -SRC_URI = "git://git.multitech.net/radio-cmd;branch=master" - -S = "${WORKDIR}/git" - -do_compile() { - oe_runmake -} - -do_install() { - oe_runmake install DESTDIR=${D} -} - diff --git a/recipes-support/multitech/radio-query_0.8.bb b/recipes-support/multitech/radio-query_0.8.bb deleted file mode 100644 index 7ce0976..0000000 --- a/recipes-support/multitech/radio-query_0.8.bb +++ /dev/null @@ -1,22 +0,0 @@ -DESCRIPTION = "MultiTech cellular radio query tool" -HOMEPAGE = "http://www.multitech.net/" -LICENSE = "GPL-2.0" -LIC_FILES_CHKSUM = "file://LICENSE;md5=94d55d512a9ba36caa9b7df079bae19f" -RDEPENDS_${PN} += "jsoncpp" -DEPENDS = "jsoncpp libmts libmts-io" - -PR = "r0" -SRCREV = "${PV}" - -SRC_URI = "git://git.multitech.net/radio-query;branch=master" - -S = "${WORKDIR}/git" - -do_compile() { - oe_runmake -} - -do_install() { - oe_runmake install DESTDIR=${D} -} - |