--[[ This is the LuaRocks rockspec for the Lua/APR binding. Author: Peter Odding Last Change: December 06, 2011 Homepage: http://peterodding.com/code/lua/apr/ --]] package = 'Lua-APR' version = '0.23.1-1' source = { url = 'http://peterodding.com/code/lua/apr/downloads/lua-apr-0.23.1-1.zip', md5 = '8e4a3773e9f5350ec781c4bc09e4b8ef', } description = { summary = 'Apache Portable Runtime binding for Lua', detailed = [[ Lua/APR is a binding to the Apache Portable Runtime (APR) library. APR powers software such as the Apache webserver and Subversion and Lua/APR makes the APR operating system interfaces available to Lua. ]], homepage = 'http://peterodding.com/code/lua/apr/', license = 'MIT', } dependencies = { 'lua >= 5.1' } build = { type = 'make', variables = { LUA_DIR = '$(PREFIX)', LUA_LIBDIR = '$(LIBDIR)', LUA_SHAREDIR = '$(LUADIR)', CFLAGS = '$(CFLAGS) -I$(LUA_INCDIR)', } } -- vim: ft=lua ts=2 sw=2 et