-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy patheditorconfig-core-scm-1.rockspec
33 lines (33 loc) · 1.15 KB
/
editorconfig-core-scm-1.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package = "editorconfig-core"
-- local _version = @VERSION@
local _version = "scm"
local _pkgrel = "1"
version = _version .. "-" .. _pkgrel
source = {
-- url = "https://github.com/editorconfig/editorconfig-core-lua/archive/v" .. _version .. ".tar.gz",
-- dir = "editorconfig-core-lua-" .. _version,
url = "git://github.com/editorconfig/editorconfig-core-lua.git",
}
description = {
summary = "EditorConfig support for the Lua language",
detailed = "EditorConfig makes it easy to maintain the correct \z
coding style when switching between different text editors and \z
betweendifferent projects. The EditorConfig project maintains a file \z
format and plugins for various text editors which allow this file \z
format to be read and used by those editors. EditorConfig Lua Core \z
provides the same functionality as the Editorconfig C Core library.",
homepage = "http://editorconfig.org",
license = "BSD",
}
dependencies = {
"lua >= 5.2",
}
build = {
type = "cmake",
variables = {
CMAKE_BUILD_TYPE = "Release",
CMAKE_INSTALL_PREFIX = "$(PREFIX)",
ECL_LIBDIR = "$(LIBDIR)",
ENABLE_TESTS = "Off",
},
}