summaryrefslogtreecommitdiff
path: root/recipes-support/gpio-tool/gpio-tool.bb
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-support/gpio-tool/gpio-tool.bb')
-rw-r--r--recipes-support/gpio-tool/gpio-tool.bb40
1 files changed, 0 insertions, 40 deletions
diff --git a/recipes-support/gpio-tool/gpio-tool.bb b/recipes-support/gpio-tool/gpio-tool.bb
deleted file mode 100644
index b3bd714..0000000
--- a/recipes-support/gpio-tool/gpio-tool.bb
+++ /dev/null
@@ -1,40 +0,0 @@
-SUMMARY = "GPIOConfig tool for Toradex Modules"
-SECTION = "base"
-LICENSE = "CLOSED"
-PR = "r3"
-
-PACKAGE_ARCH = "${MACHINE_ARCH}"
-
-DEPENDS = "gtk+"
-
-SRC_URI = " \
- file://gpio-tool \
- file://gpio-tool.desktop \
- file://gpio-tool.png \
-"
-
-PACKAGES = "${PN}"
-
-#no gnu_hash in binaries, skip QA dev-so for this package
-#we have symlinks ending in .so, skip QA ldflags for this package
-#inhibit warnings about files being stripped
-INSANE_SKIP_${PN} = "ldflags already-stripped"
-
-# just don't do any configuring
-do_configure() {
-}
-
-do_install() {
- install -d ${D}/${bindir}
- install -d ${D}/${datadir}/applications
- install -d ${D}/${datadir}/pixmaps
- install -d ${D}/home/root/Desktop
- install -m 755 ${WORKDIR}/gpio-tool ${D}/${bindir}/
- install -m 644 ${WORKDIR}/gpio-tool.desktop ${D}/${datadir}/applications/
- install -m 644 ${WORKDIR}/gpio-tool.png ${D}/${datadir}/pixmaps/
- ln -s ${datadir}/applications/gpio-tool.desktop ${D}/home/root/Desktop/
-}
-
-FILES_${PN} += " \
- /home/root/Desktop \
-"