9c675a239b
lua-stdlib is a library of modules for common programming tasks, including list, table and functional operations, regexps, objects, pretty-printing and getopt. The whole thing can be loaded with 'require "std"', or modules can be used individually. Of course, this for Lua programming language :-)
17 lines
436 B
Makefile
17 lines
436 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2009/02/12 01:45:01 minskim Exp $
|
|
|
|
.include "../../devel/lua-stdlib/Makefile.common"
|
|
|
|
PKGNAME= ${DISTNAME:S/stdlib/${LUA_PKGPREFIX}-stdlib/}
|
|
|
|
COMMENT= Standard library for Lua programming language
|
|
|
|
INSTALLATION_DIRS+= ${LUA_LDIR}
|
|
|
|
.include "../../lang/lua/module.mk"
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/modules/*.lua \
|
|
${DESTDIR}${PREFIX}/${LUA_LDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|