diff options
Diffstat (limited to 'docs/integrating_distro_modules_with_luarocks.md')
-rw-r--r-- | docs/integrating_distro_modules_with_luarocks.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/integrating_distro_modules_with_luarocks.md b/docs/integrating_distro_modules_with_luarocks.md index fb073500..b6c054ab 100644 --- a/docs/integrating_distro_modules_with_luarocks.md +++ b/docs/integrating_distro_modules_with_luarocks.md | |||
@@ -151,14 +151,14 @@ Continuing the examples above: | |||
151 | * /usr/lib/luarocks/rocks-5.3/lua-cjson/2.1.0-0/lua-cjson-2.1.0-0.rockspec | 151 | * /usr/lib/luarocks/rocks-5.3/lua-cjson/2.1.0-0/lua-cjson-2.1.0-0.rockspec |
152 | 152 | ||
153 | For simplicity, I would recommend just copying over the appropriate rockspec | 153 | For simplicity, I would recommend just copying over the appropriate rockspec |
154 | file from [luarocks.org](http://luarocks.org) and bundling them in the package | 154 | file from [luarocks.org](https://luarocks.org) and bundling them in the package |
155 | metadata. For completeness, this is how the one for LPeg 1.0 looks like: | 155 | metadata. For completeness, this is how the one for LPeg 1.0 looks like: |
156 | 156 | ||
157 | ``` | 157 | ``` |
158 | package = "LPeg" | 158 | package = "LPeg" |
159 | version = "1.0.0-1" | 159 | version = "1.0.0-1" |
160 | source = { | 160 | source = { |
161 | url = "http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.0.tar.gz", | 161 | url = "https://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.0.tar.gz", |
162 | md5 = "0aec64ccd13996202ad0c099e2877ece", | 162 | md5 = "0aec64ccd13996202ad0c099e2877ece", |
163 | } | 163 | } |
164 | description = { | 164 | description = { |
@@ -171,7 +171,7 @@ description = { | |||
171 | we expect from a pattern-matching library (and more, as we can | 171 | we expect from a pattern-matching library (and more, as we can |
172 | define entire grammars). | 172 | define entire grammars). |
173 | ]], | 173 | ]], |
174 | homepage = "http://www.inf.puc-rio.br/~roberto/lpeg.html", | 174 | homepage = "https://www.inf.puc-rio.br/~roberto/lpeg/lpeg.html", |
175 | maintainer = "Gary V. Vaughan <gary@vaughan.pe>", | 175 | maintainer = "Gary V. Vaughan <gary@vaughan.pe>", |
176 | license = "MIT/X11" | 176 | license = "MIT/X11" |
177 | } | 177 | } |