-
Notifications
You must be signed in to change notification settings - Fork 0
/
mjolnir.7bits.mjomatic-0.1-1.rockspec
54 lines (45 loc) · 1.32 KB
/
mjolnir.7bits.mjomatic-0.1-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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
-- `package` is the require-path.
--
-- Note: this must match the filename also.
package = "mjolnir.7bits.mjomatic"
-- `version` has two parts, your module's version (0.1) and the
-- rockspec's version (1) in case you change metadata without
-- changing the module's source code.
--
-- Note: the version must match the version in the filename.
version = "0.1-1"
-- General metadata:
local url = "github.com/Habbie/mjomatic"
local desc = "OS X window management with Mjolnir, inspired by tmuxomatic."
source = {url = "git://" .. url}
description = {
summary = desc,
detailed = desc,
homepage = "https://" .. url,
license = "MIT",
}
-- Dependencies:
supported_platforms = {"macosx"}
dependencies = {
"lua >= 5.2",
-- You can add Mjolnir core modules as dependencies,
-- i.e. "mjolnir.application", "mjolnir.hotkey", whatever.
--
-- For example, if your module depends on `mjolnir.fnutils`,
-- uncomment the following line:
--
-- "mjolnir.fnutils",
"mjolnir.screen",
"mjolnir.alert",
"mjolnir.cmsj.appfinder"
}
-- Build rules:
build = {
type = "builtin",
modules = {
-- This is the top-level module:
["mjolnir.7bits.mjomatic"] = "mjomatic.lua",
-- Note: the key on the left side is the require-path; the value
-- on the right is the filename relative to the current dir.
},
}