Hi.  The rockspec is at:
  http://www.pjb.com.au/comp/lua/midialsa-1.01-0.rockspec
and also below the ~/.sig

Doc:      http://www.pjb.com.au/comp/lua/midialsa.html
Tarball:  http://www.pjb.com.au/comp/lua/midialsa-1.01.tar.gz

I wrote:
> I'm now going to do a translation into Perl xs which should
> appear in CPAN in two or three weeks, probably as MIDI::ALSA

This is now done, and I've just upoaded it to CPAN :-)
Both Perl and Lua versions now pass all 36 tests :-)
They've exposed several bugs in each other, bugs which
are now fixed, and also in Patricio Paez' Python modules
which I'll raise with him as soon as I've sent this...

Hisham wrote:
> I added an external_dependencies section to it, so that it
> checks if ALSA is available when building:

Thanks! This is now rolled into midialsa-1.01-0.rockspec

Peter Billam

http://www.pjb.com.au       [email protected]      (03) 6278 9410
"Was der Meister nicht kann,   vermöcht es der Knabe, hätt er
 ihm immer gehorcht?"   Siegfried to Mime, from Act 1 Scene 2
-------------------------------------------------------------
package = "midialsa"
version = "1.01-0"
source = {
   url = "http://www.pjb.com.au/comp/lua/midialsa-1.01.tar.gz";,
   md5 = "517e51f34705199daec89f03810ea4f7"
}
description = {
   summary = "Provides access to the ALSA sequencer",
   detailed = [[
      This is a call-compatible translation into Lua of the Python
      module alsaseq.py by Patricio Paez. It gives access to the ALSA
      library, offering functions client, connectfrom, connectto, fd, id,
      input, inputpending, output, start, status, stop and syncoutput,
      plus some functions to interface with the MIDI.lua module.
   ]],
   homepage = "http://www.pjb.com.au/comp/lua/midialsa.html";,
   license = "MIT/X11"
}
dependencies = {
   "lua >= 5.1"
}
external_dependencies = {
   ALSA = {
      header  = "alsa/asoundlib.h",
      library = "asound",
   }
}
build = {
   type = "builtin",
   modules = {
      ["midialsa"] = "midialsa.lua",
      ["C-midialsa"] = {
         sources   = { "C-midialsa.c" },
         incdirs   = { "$(ALSA_INCDIR)" },
         libdirs   = { "$(ALSA_LIBDIR)" },
         libraries = { "asound" },
      }
   },
   copy_directories = { "doc", "test" }
}


_______________________________________________
Luarocks-developers mailing list
[email protected]
http://lists.luaforge.net/cgi-bin/mailman/listinfo/luarocks-developers

Reply via email to