aboutsummaryrefslogtreecommitdiff
path: root/docs/creating_luarocks_with_gnu_autotools.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/creating_luarocks_with_gnu_autotools.md')
-rw-r--r--docs/creating_luarocks_with_gnu_autotools.md8
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
5to do anything particular to make them relocatable; applications which need to 5to do anything particular to make them relocatable; applications which need to
6find resources at run-time may be problematic. See GNU Smalltalk for one 6find resources at run-time may be problematic. See GNU Smalltalk for one
7approach (look at the RELOCATABILITY section in its configure.ac). 7approach (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
9paths for in-place running of the program during development, and relying on 9paths for in-place running of the program during development, and relying on
10Lua search paths at run-time, purely to find Lua modules. Search for 10Lua 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
60DISTCLEANFILES = $(PACKAGE).rockspec 60DISTCLEANFILES = $(PACKAGE).rockspec
61``` 61```
62 62
63You can use [woger](http://github.com/rrthomas/woger/) to automate your 63You can use [woger](https://github.com/rrthomas/woger) to automate your
64releases, uploading rockspecs to luarocks.org and announcements to the Lua 64releases, uploading rockspecs to luarocks.org and announcements to the Lua
65mailing list. The details are evolving, so see woger itself for details, and a 65mailing list. The details are evolving, so see woger itself for details, and a
66frequently-updated project such as 66frequently-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.