diff options
Diffstat (limited to 'docs/creating_luarocks_with_gnu_autotools.md')
-rw-r--r-- | docs/creating_luarocks_with_gnu_autotools.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/creating_luarocks_with_gnu_autotools.md b/docs/creating_luarocks_with_gnu_autotools.md index 3e684691..3463ca72 100644 --- a/docs/creating_luarocks_with_gnu_autotools.md +++ b/docs/creating_luarocks_with_gnu_autotools.md | |||
@@ -5,7 +5,7 @@ default builds non-relocatable packages. For many programs it's not necessary | |||
5 | to do anything particular to make them relocatable; applications which need to | 5 | to do anything particular to make them relocatable; applications which need to |
6 | find resources at run-time may be problematic. See GNU Smalltalk for one | 6 | find resources at run-time may be problematic. See GNU Smalltalk for one |
7 | approach (look at the RELOCATABILITY section in its configure.ac). | 7 | approach (look at the RELOCATABILITY section in its configure.ac). |
8 | [Zee](http://github.com/rrthomas/zee) uses another approach, of patching in | 8 | [Zee](https://github.com/rrthomas/zee) uses another approach, of patching in |
9 | paths for in-place running of the program during development, and relying on | 9 | paths for in-place running of the program during development, and relying on |
10 | Lua search paths at run-time, purely to find Lua modules. Search for | 10 | Lua search paths at run-time, purely to find Lua modules. Search for |
11 | 'in_place_lua_path'. | 11 | 'in_place_lua_path'. |
@@ -25,7 +25,7 @@ package="@PACKAGE@" | |||
25 | detailed = [[ | 25 | detailed = [[ |
26 | <Detailed information.> | 26 | <Detailed information.> |
27 | ]], | 27 | ]], |
28 | homepage = "http://github.com/<USER>/@PACKAGE@/", | 28 | homepage = "https://github.com/<USER>/@PACKAGE@", |
29 | license = "<LICENSE>" | 29 | license = "<LICENSE>" |
30 | } | 30 | } |
31 | dependencies = { | 31 | dependencies = { |
@@ -60,8 +60,8 @@ EXTRA_DIST = $(PACKAGE).rockspec.in | |||
60 | DISTCLEANFILES = $(PACKAGE).rockspec | 60 | DISTCLEANFILES = $(PACKAGE).rockspec |
61 | ``` | 61 | ``` |
62 | 62 | ||
63 | You can use [woger](http://github.com/rrthomas/woger/) to automate your | 63 | You can use [woger](https://github.com/rrthomas/woger) to automate your |
64 | releases, uploading rockspecs to luarocks.org and announcements to the Lua | 64 | releases, uploading rockspecs to luarocks.org and announcements to the Lua |
65 | mailing list. The details are evolving, so see woger itself for details, and a | 65 | mailing list. The details are evolving, so see woger itself for details, and a |
66 | frequently-updated project such as | 66 | frequently-updated project such as |
67 | [luaposix](http://github.com/luaposix/luaposix/) for example Makefile.am code. | 67 | [luaposix](https://github.com/luaposix/luaposix) for example Makefile.am code. |