-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
leetking
authored and
leetking
committed
Aug 26, 2017
1 parent
edd03a0
commit 6c535c0
Showing
4 changed files
with
78 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,13 @@ version = "1.0-2" | |
source = { | ||
url = "git://github.com/leetking/cwnu-drcom.lua", | ||
dir = "cwnu-drcom.lua", | ||
tag = "v1.0-2", | ||
} | ||
description = { | ||
summary = "登录西华师范大学校园网", | ||
detailed = [[ | ||
通过网页认证登录网络,仅供西华师范大学使用(http://cwnu.edu.cn)。 | ||
v1.0-2 老版本也能继续使用。 | ||
]], | ||
homepage = "http://github.com/leetking/cwnu-drcom.lua", | ||
maintainer = "leetking <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package = "cwnu-drcom" | ||
version = "2.0-0" | ||
source = { | ||
url = "git://github.com/leetking/cwnu-drcom.lua", | ||
dir = "cwnu-drcom.lua", | ||
tag = "v2.0", | ||
} | ||
description = { | ||
summary = "登录西华师范大学校园网", | ||
detailed = [[ | ||
通过网页认证登录网络,仅供西华师范大学使用(http://cwnu.edu.cn)。 | ||
v2.0 新版本登录 | ||
]], | ||
homepage = "http://github.com/leetking/cwnu-drcom.lua", | ||
maintainer = "leetking <[email protected]>", | ||
license = "GNU GPL v3", | ||
} | ||
dependencies = { | ||
"lua >= 5.1", | ||
"luasocket >= 3.0rc1-2", | ||
"md5 >= 1.2-1", | ||
} | ||
build = { | ||
type = "builtin", | ||
modules = { | ||
["cwnu-drcom.core"] = "src/core.lua", | ||
-- TODO 如何让config模块不导出 | ||
["cwnu-drcom.config"] = "src/config.lua", | ||
}, | ||
install = { | ||
bin = { | ||
drcom = "drcom.lua", | ||
}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters