summaryrefslogtreecommitdiff
path: root/recipes-ruby/ruby-serialport/ruby-serialport_1.1.0.bb
diff options
context:
space:
mode:
authorJohn Klug <john.klug@multitech.com>2017-04-11 11:12:26 -0500
committerJohn Klug <john.klug@multitech.com>2017-05-23 15:21:54 -0500
commit6160f537666c4c6ab443e70856f72898db0ed031 (patch)
tree1fb59e0e1584c9a90c35b85a0fd70cbf9db2c4cf /recipes-ruby/ruby-serialport/ruby-serialport_1.1.0.bb
parent0f2dca7de250ebb262e4d6e305b15008cc354281 (diff)
downloadmeta-mlinux-6160f537666c4c6ab443e70856f72898db0ed031.tar.gz
meta-mlinux-6160f537666c4c6ab443e70856f72898db0ed031.tar.bz2
meta-mlinux-6160f537666c4c6ab443e70856f72898db0ed031.zip
Fix FILESEXTRAPATHS_prepend
Diffstat (limited to 'recipes-ruby/ruby-serialport/ruby-serialport_1.1.0.bb')
-rw-r--r--recipes-ruby/ruby-serialport/ruby-serialport_1.1.0.bb32
1 files changed, 0 insertions, 32 deletions
diff --git a/recipes-ruby/ruby-serialport/ruby-serialport_1.1.0.bb b/recipes-ruby/ruby-serialport/ruby-serialport_1.1.0.bb
deleted file mode 100644
index f00c45c..0000000
--- a/recipes-ruby/ruby-serialport/ruby-serialport_1.1.0.bb
+++ /dev/null
@@ -1,32 +0,0 @@
-DESCRIPTION = "A Ruby library that provides a class for using RS-232 serial ports"
-HOMEPAGE = "https://github.com/hparra/ruby-serialport"
-LICENSE = "GPLv2"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=751419260aa954499f7abaabaa882bbe"
-SECTION = "console/utils"
-PRIORITY = "optional"
-
-DEPENDS = "ruby"
-
-PR = "r2"
-
-# tag v1.1.0
-SRCREV = "709e385f6d20aaadc7f3252af59250336d27e607"
-
-SRC_URI = "git://github.com/hparra/ruby-serialport.git;protocol=git"
-
-S = "${WORKDIR}/git"
-B = "${S}"
-
-do_compile() {
- ${CC} ${CFLAGS} ${LDFLAGS} -Iext/native -I${STAGING_INCDIR}/ruby-1.9.1 -I${STAGING_INCDIR}/ruby-1.9.1/arm-linux-eabi -c ext/native/*.c
- ${CC} ${CFLAGS} ${LDFLAGS} --shared -o ext/native/serialport.so serialport.o posix_serialport_impl.o
-}
-
-do_install() {
- install -d ${D}${libdir}/ruby/serialport
- install lib/serialport.rb ${D}${libdir}/ruby/serialport.rb
- install ext/native/serialport.so -t ${D}${libdir}/ruby
-}
-
-FILES_${PN} = "${libdir}/ruby/serialport*"
-FILES_${PN}-dbg += "${libdir}/ruby/.debug"