-
Notifications
You must be signed in to change notification settings - Fork 3
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
Peter Aronoff
committed
Dec 6, 2015
1 parent
3df02ac
commit d207c94
Showing
3 changed files
with
39 additions
and
0 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package = 'split' | ||
version = '1.1.1-1' | ||
source = { | ||
url = 'https://bitbucket.org/telemachus/split/downloads/split-v1.1.1-1.tar.gz', | ||
dir = 'split' | ||
} | ||
description = { | ||
summary = 'String split function and iterator for Lua', | ||
detailed = [[ | ||
A string split function and iterator for Lua since the string standard | ||
library doesn't come with one. | ||
]], | ||
homepage = 'https://bitbucket.org/telemachus/split', | ||
license = 'BSD 3-Clause', | ||
maintainer = 'Peter Aronoff <[email protected]>' | ||
} | ||
dependencies = { 'lua >= 5.1' } | ||
build = { | ||
type = 'builtin', | ||
modules = { | ||
split = 'src/split.lua', | ||
}, | ||
copy_directories = { 'doc' } | ||
} |