-
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
Apr 24, 2016
1 parent
7a58a2d
commit a741d06
Showing
13 changed files
with
401 additions
and
109 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
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 = '3.0.0-1' | ||
source = { | ||
url = 'https://bitbucket.org/telemachus/split/downloads/split-v3.0.0-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' } | ||
} |
Oops, something went wrong.