From 5f448d6ed160d11930a6372509a6fb4d56e2e4c6 Mon Sep 17 00:00:00 2001 From: Alexandre Erwin Ittner Date: Sun, 31 Aug 2008 02:08:33 +0000 Subject: [PATCH] Updating rockspeck. Thanks Amadeu A. Barbosa Jr git-svn-id: file:///var/svn/lua-iconv/trunk@59 9538949d-8f27-0410-946f-ce01ef448559 --- ...conv-r5-1.rockspec => lua-iconv-r5-2.rockspec | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) rename lua-iconv-r5-1.rockspec => lua-iconv-r5-2.rockspec (79%) diff --git a/lua-iconv-r5-1.rockspec b/lua-iconv-r5-2.rockspec similarity index 79% rename from lua-iconv-r5-1.rockspec rename to lua-iconv-r5-2.rockspec index 3b1dfcf..a4c016d 100644 --- a/lua-iconv-r5-1.rockspec +++ b/lua-iconv-r5-2.rockspec @@ -3,7 +3,7 @@ -- rockspec based uppon the file provided by DarkGod package = "lua-iconv" -version = "r5-1" +version = "r5-2" source = { url = "http://luaforge.net/frs/download.php/3389/lua-iconv-r5.tar.gz", @@ -32,12 +32,14 @@ external_dependencies = { } build = { - type = "make", - variables = { - CFLAGS = "-I$(LUA_INCDIR) -O3 -Wall", - LFLAGS = "$(LIBFLAG)", - LIBS = "", - INSTALL_PATH = "$(LIBDIR)" + type = "module", + modules = { + iconv = { + sources = {"luaiconv.c"}, + incdirs = {"$(ICONV_INCDIR)"}, + libdirs = {"$(ICONV_LIBDIR)"} + } } } +