lua-users home
lua-l archive

Re: [ANN] LuaRocks 3.0.3

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Hi Andriy,
the search path for libraries seems to be highly system/installation dependent,
at least under Manjaro Linux the "xml-1.1.3-1.rockspec" installs without problems.
Can "xml-1.1.3" be installed using the attached "xml-1.1.3-2.rockspec" on your
system?
Best regards,
Oliver
package = "xml"
version = "1.1.3-2"
source = {
 url = 'git://github.com/lubyk/xml',
 tag = 'REL-1.1.3',
 dir = 'xml',
}
description = {
 summary = "Very fast xml parser based on RapidXML",
 detailed = [[
 This module is part of the Lubyk project.
 Main features are:
 - Fast and easy to use
 - Complete documentation
 - Based on proven code (RapidXML)
 - Full test coverage
 Read the documentation at http://doc.lubyk.org/xml.html.
 ]],
 homepage = "http://doc.lubyk.org/xml.html";,
 license = "MIT"
}
dependencies = {
 "lua >= 5.1, < 5.4",
 "lub >= 1.0.3, < 2",
 "luarocks-build-cpp"
}
build = {
 type = 'cpp',
 modules = {
 -- Plain Lua files
 ['xml' ] = 'xml/init.lua',
 ['xml.Parser' ] = 'xml/Parser.lua',
 -- C module
 ['xml.core' ] = {
 sources = {
 'src/Parser.cpp',
 'src/bind/dub/dub.cpp',
 'src/bind/xml_Parser.cpp',
 'src/bind/xml_core.cpp',
 },
 incdirs = {'include', 'src/bind', 'src/vendor'},
 },
 },
}

AltStyle によって変換されたページ (->オリジナル) /