Download:
child 20:1820a85e8c42
parent 18:3702d11e0309
19:2a601f9fd2ab
Anton Shestakov <av6@dwimlabs.net>, Sat, 10 Sep 2016 08:04:17 +0800
rockspecs: scm-0

1 файлов изменено, 30 вставок(+), 0 удалений(-) [+]
rockspecs/hglib-scm-0.rockspec file | annotate | diff | comparison | revisions
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/rockspecs/hglib-scm-0.rockspec Sat Sep 10 08:04:17 2016 +0800
@@ -0,0 +1,30 @@
+package = 'hglib'
+version = 'scm-0'
+source = {
+ url = 'hg+https://bitbucket.org/av6/lua-hglib',
+ branch = 'default'
+}
+description = {
+ summary = 'Mercurial command server client library.',
+ detailed = [[
+ A pure-Lua library for interacting with Mercurial's command server.
+ ]],
+ homepage = 'https://bitbucket.org/av6/lua-hglib',
+ license = 'MIT'
+}
+
+dependencies = {
+ 'lpc ~> 1.0.0',
+ -- lpc seems to be 5.1-only (contrary to what its rockspec says), at least
+ -- until https://github.com/LuaDist/lpc/pull/1 is merged, for example.
+ -- Since hglib is depending on it, it's also 5.1-only at the moment.
+ 'lua ~> 5.1'
+}
+
+build = {
+ type = 'builtin',
+ modules = {
+ hglib = 'hglib.lua'
+ },
+ copy_directories = { 'examples', 'spec' }
+}