Created
February 21, 2016 18:03
-
-
Save alexbw/7d48f24c3ff3781ff366 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
package="lbase64" | |
version="20120820-1" | |
source = { | |
url = "https://www.dropbox.com/s/p5qei9czulhox6w/lbase64.tar.gz?dl=0", | |
dir = "base64" | |
} | |
description = { | |
summary = "A Base64 library for Lua", | |
detailed = [[ | |
A Base64 library for Lua. Base64 is a base-64 transfer encoding that | |
uses the characters A-Z, a-z, and 0-9 in that order for the first 62 | |
digits. | |
]], | |
homepage = "http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/#lbase64", | |
license = "Public domain" | |
} | |
dependencies = { | |
"lua ~> 5.1" | |
} | |
build = { | |
type = "module", | |
modules = { | |
base64 = "lbase64.c" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment