2b024c56de
This package provides a documentation for Lua stdlib, 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.
19 lines
468 B
Makefile
19 lines
468 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2009/02/12 01:47:49 minskim Exp $
|
|
|
|
.include "../../devel/lua-stdlib/Makefile.common"
|
|
|
|
PKGNAME= ${DISTNAME:S/stdlib/lua-stdlib-doc/}
|
|
|
|
COMMENT= Documentation for modules from lua-stdlib
|
|
|
|
DEPENDS+= lua-stdlib-[0-9]*:../../devel/lua-stdlib
|
|
|
|
DOCDIR= share/doc/lua-stdlib
|
|
|
|
INSTALLATION_DIRS+= ${DOCDIR}
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/modules/*.html \
|
|
${DESTDIR}${PREFIX}/${DOCDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|