diff options
author | rillig <rillig@pkgsrc.org> | 2009-07-26 19:34:33 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2009-07-26 19:34:33 +0000 |
commit | 72d23ec046af474f719341ee6ad91387881de0aa (patch) | |
tree | 1581ffc65f712f6c19c964ad9b894b38da2e5bfa /lang/LuaJIT/Makefile | |
parent | 460990f2bb1d3700577e87af48b1b3c2f7424f15 (diff) | |
download | pkgsrc-72d23ec046af474f719341ee6ad91387881de0aa.tar.gz |
Imported LuaJIT from pkgsrc-wip.
LuaJIT is a Just-In-Time Compiler for the Lua programming language.
Lua is a powerful, light-weight programming language designed for extending
applications. Lua is also frequently used as a general-purpose, stand-alone
language. More information about Lua can be found at: http://www.lua.org/
LuaJIT is based on the Lua 5.1.x virtual machine and bytecode interpreter from
lua.org. It compiles bytecode to native x86 (i386+) machine code to speed up the
execution of Lua programs.
Packaged by pho@cielonegro.org.
Diffstat (limited to 'lang/LuaJIT/Makefile')
-rw-r--r-- | lang/LuaJIT/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/lang/LuaJIT/Makefile b/lang/LuaJIT/Makefile new file mode 100644 index 00000000000..831f290108f --- /dev/null +++ b/lang/LuaJIT/Makefile @@ -0,0 +1,31 @@ +# $NetBSD: Makefile,v 1.1.1.1 2009/07/26 19:34:33 rillig Exp $ +# + +DISTNAME= LuaJIT-1.1.5 +CATEGORIES= lang +MASTER_SITES= http://luajit.org/download/ + +MAINTAINER= pho@cielonegro.org +HOMEPAGE= http://luajit.org/ +COMMENT= Just-In-Time Compiler for the Lua programming language + +LICENSE= mit + +PKG_DESTDIR_SUPPORT= user-destdir + +USE_TOOLS+= gmake + +MAKE_FLAGS+= INSTALL_TOP=${PREFIX} + +.include "../../mk/bsd.prefs.mk" + +OPSYSVARS+= BUILD_TARGET +BUILD_TARGET.Linux= linux +BUILD_TARGET.FreeBSD= bsd +BUILD_TARGET.NetBSD= bsd +BUILD_TARGET.OpenBSD= bsd +BUILD_TARGET.Darwin= macosx +BUILD_TARGET.SunOS= solaris +BUILD_TARGET.*= posix + +.include "../../mk/bsd.pkg.mk" |