Hi,

Please add the attached rockspec for LXSH 0.8.6 to the repository. Major changes since the last version include support for lexing and syntax highlighting of BibTeX entries and shell scripts. Thanks!

 - Peter
--[[

 This is the LuaRocks rockspec for the LXSH module.

 Author: Peter Odding <[email protected]>
 Last Change: October 04, 2011
 Homepage: http://peterodding.com/code/lua/lxsh

]]

package = 'LXSH'
version = '0.8.6-1'

source = {
  url = 'http://peterodding.com/code/lua/lxsh/downloads/lxsh-0.8.6-1.zip',
  md5 = 'a9d4bd853f9756f8e8bfe0945b835161',
}

description = {
  summary = 'Lexing & syntax highlighting in Lua',
  detailed = [[
    LXSH is a collection of lexers and syntax highlighters written in Lua using
    the excellent pattern-matching library LPeg. The syntax highlighters can
    generate HTML, LaTeX (PDF) and RTF output.
  ]],
  homepage = 'http://peterodding.com/code/lua/lxsh',
  license = 'MIT',
}

dependencies = {
  'lua >= 5.1',
  'lpeg >= 0.9'
}

build = {
  type = 'builtin',
  modules = {
    ['lxsh.init'] = 'src/init.lua',
    ['lxsh.lexers.init'] = 'src/lexers/init.lua',
    ['lxsh.lexers.lua'] = 'src/lexers/lua.lua',
    ['lxsh.lexers.c'] = 'src/lexers/c.lua',
    ['lxsh.lexers.bib'] = 'src/lexers/bib.lua',
    ['lxsh.lexers.sh'] = 'src/lexers/sh.lua',
    ['lxsh.highlighters.init'] = 'src/highlighters/init.lua',
    ['lxsh.highlighters.lua'] = 'src/highlighters/lua.lua',
    ['lxsh.highlighters.c'] = 'src/highlighters/c.lua',
    ['lxsh.highlighters.bib'] = 'src/highlighters/bib.lua',
    ['lxsh.highlighters.sh'] = 'src/highlighters/sh.lua',
    ['lxsh.docs.lua'] = 'src/docs/lua.lua',
    ['lxsh.docs.c'] = 'src/docs/c.lua',
    ['lxsh.docs.bib'] = 'src/docs/bib.lua',
    ['lxsh.formatters.html'] = 'src/formatters/html.lua',
    ['lxsh.formatters.latex'] = 'src/formatters/latex.lua',
    ['lxsh.formatters.rtf'] = 'src/formatters/rtf.lua',
    ['lxsh.colors.earendel'] = 'src/colors/earendel.lua',
    ['lxsh.colors.slate'] = 'src/colors/slate.lua',
    ['lxsh.colors.wiki'] = 'src/colors/wiki.lua',
  },
  copy_directories = { 'etc', 'examples', 'test' },
}

-- vim: ft=lua ts=2 sw=2 et
------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2dcopy1
_______________________________________________
Luarocks-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/luarocks-developers

Reply via email to