Hi,

I'm new to the Lua community, but wanted to submit a new rock for
inclusion in luarocks. It's a library and tools to control Philip's Hue
light bulbs. The library is a loose wrapper around the REST API provided
by Philips. In addition, two command line utilities are included to
demonstrate the use of the API. The first, `huectl`, is a generic tool
that let's you control the various properties such as on/off, color, and
brightness. The second utility, `huebwmon`, changes the colors of lights
based on network utilization.

Attached is the rockspec.

Thank you,
Pete

#!/usr/bin/env lua

package = 'luahue'
version = '1.0-1'
source = {
  url = 'git://github.com/pkazmier/luahue.git',
  tag = 'v1.0'
}
description = {
  summary  = 'A Lua library and tools to control Philips Hue light bulbs.',
  detailed = [[
The library is a loose wrapper around the REST API provided by
Philips. In addition, two command line utilities are included to
demonstrate the use of the API. The first, `huectl`, is a generic tool
that let's you control the various properties such as on/off, color,
and brightness. The second utility, `huebwmon`, changes the colors of
lights based on network utilization.
              ]],
  homepage = 'http://github.com/pkazmier/luahue',
  license  = 'MIT',
}
dependencies = {
  'lua >= 5.1',
  'penlight',
  'luasocket',
  'luajson',
}
build = {
  type = 'builtin',
  modules = {
    hue = 'src/hue.lua',
  },
  install = {
    bin = { 
      'bin/huectl',
      'bin/huebwmon',
    }
  }
}
------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_mar
_______________________________________________
Luarocks-developers mailing list
Luarocks-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/luarocks-developers

Reply via email to