diff options
author | minskim <minskim> | 2009-02-12 01:47:49 +0000 |
---|---|---|
committer | minskim <minskim> | 2009-02-12 01:47:49 +0000 |
commit | 4e9ce774f270e74bb01f00c54f7f8ab9beb84a68 (patch) | |
tree | 58f0b7fed9197d25afad554303024c36e6004423 /devel/lua-stdlib-doc | |
parent | a19ba7edbabc5b2d34c47bac5256045fc3583478 (diff) | |
download | pkgsrc-4e9ce774f270e74bb01f00c54f7f8ab9beb84a68.tar.gz |
Import lua-stdlib-doc-8 from pkgsrc-wip. Packaged by Aleksey Cheusov.
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.
Diffstat (limited to 'devel/lua-stdlib-doc')
-rw-r--r-- | devel/lua-stdlib-doc/DESCR | 5 | ||||
-rw-r--r-- | devel/lua-stdlib-doc/Makefile | 19 | ||||
-rw-r--r-- | devel/lua-stdlib-doc/PLIST | 17 |
3 files changed, 41 insertions, 0 deletions
diff --git a/devel/lua-stdlib-doc/DESCR b/devel/lua-stdlib-doc/DESCR new file mode 100644 index 00000000000..25fe4b6d80a --- /dev/null +++ b/devel/lua-stdlib-doc/DESCR @@ -0,0 +1,5 @@ +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. diff --git a/devel/lua-stdlib-doc/Makefile b/devel/lua-stdlib-doc/Makefile new file mode 100644 index 00000000000..dc8835a0363 --- /dev/null +++ b/devel/lua-stdlib-doc/Makefile @@ -0,0 +1,19 @@ +# $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" diff --git a/devel/lua-stdlib-doc/PLIST b/devel/lua-stdlib-doc/PLIST new file mode 100644 index 00000000000..8c9a316a9bb --- /dev/null +++ b/devel/lua-stdlib-doc/PLIST @@ -0,0 +1,17 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2009/02/12 01:47:49 minskim Exp $ +share/doc/lua-stdlib/base.html +share/doc/lua-stdlib/debug_ext.html +share/doc/lua-stdlib/getopt.html +share/doc/lua-stdlib/io_ext.html +share/doc/lua-stdlib/lcs.html +share/doc/lua-stdlib/list.html +share/doc/lua-stdlib/math_ext.html +share/doc/lua-stdlib/mbox.html +share/doc/lua-stdlib/object.html +share/doc/lua-stdlib/parser.html +share/doc/lua-stdlib/rex.html +share/doc/lua-stdlib/set.html +share/doc/lua-stdlib/std.html +share/doc/lua-stdlib/string_ext.html +share/doc/lua-stdlib/table_ext.html +share/doc/lua-stdlib/xml.html |