From a8e35818f2da7ddcc9e73116ee8ca1b8edad9aa5 Mon Sep 17 00:00:00 2001 From: alnsn Date: Sat, 17 Jan 2015 17:50:23 +0000 Subject: Initial import of Lua 5.3.0. Lua is a powerful, light-weight programming language designed for extending applications. Lua is also frequently used as a general-purpose, stand-alone language. Lua combines simple procedural syntax (similar to Pascal) with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, interpreted from bytecodes, and has automatic memory management, making it ideal for configuration, scripting, and rapid prototyping. Lua is a language engine that you can embed into your application. This means that, besides syntax and semantics, Lua has an API that allows the application to exchange data with Lua programs and also to extend Lua with C functions. In this sense, Lua can be regarded as a language framework for building domain-specific languages. Lua is implemented as a small library of C functions, written in ANSI C, and compiles unmodified in all known platforms. The implementation goals are simplicity, efficiency, portability, and low embedding cost. The result is a fast language engine with small footprint, making it ideal in embedded systems too. --- lang/lua53/PLIST | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lang/lua53/PLIST (limited to 'lang/lua53/PLIST') diff --git a/lang/lua53/PLIST b/lang/lua53/PLIST new file mode 100644 index 00000000000..5025963fd6c --- /dev/null +++ b/lang/lua53/PLIST @@ -0,0 +1,21 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2015/01/17 17:50:23 alnsn Exp $ +bin/lua5.3 +bin/luac5.3 +include/lua-5.3/lauxlib.h +include/lua-5.3/lua.h +include/lua-5.3/lua.hpp +include/lua-5.3/luaconf.h +include/lua-5.3/lualib.h +lib/liblua5.3.la +lib/pkgconfig/lua-5.3.pc +man/man1/lua5.3.1 +man/man1/luac5.3.1 +share/doc/lua-5.3/contents.html +share/doc/lua-5.3/logo.gif +share/doc/lua-5.3/lua.css +share/doc/lua-5.3/manual.css +share/doc/lua-5.3/manual.html +share/doc/lua-5.3/osi-certified-72x60.png +share/doc/lua-5.3/readme.html +@pkgdir share/lua/5.3 +@pkgdir lib/lua/5.3 -- cgit v1.2.3