diff options
author | xtraeme <xtraeme> | 2004-04-05 13:57:53 +0000 |
---|---|---|
committer | xtraeme <xtraeme> | 2004-04-05 13:57:53 +0000 |
commit | 59c3ee32d1543ab7911b9a52045b624b9273259f (patch) | |
tree | ef30669c4ee0aca4196532d3937bce773a373fd5 /textproc/lua-expat/Makefile | |
parent | 5720cdd4f6186b5bcf27c16e7dc2cba026405183 (diff) | |
download | pkgsrc-59c3ee32d1543ab7911b9a52045b624b9273259f.tar.gz |
Initial import of lua-expat from pkgsrc-wip, packaged by pancake.
LuaExpat is a XML parser based on the Expat XML parser.
It allows Lua programs to:
- Process a XML document incrementally , thus being able to handle
huge documents without memory penalties;
- Register handler functions wich are called by the parser during
the processing of the document, handling the document elements or text.
Diffstat (limited to 'textproc/lua-expat/Makefile')
-rw-r--r-- | textproc/lua-expat/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/textproc/lua-expat/Makefile b/textproc/lua-expat/Makefile new file mode 100644 index 00000000000..473b22e4208 --- /dev/null +++ b/textproc/lua-expat/Makefile @@ -0,0 +1,24 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/04/05 13:57:53 xtraeme Exp $ +# + +DISTNAME= luaexpat-1.0a +PKGNAME= ${DISTNAME:S/lua/lua-/} +CATEGORIES= textproc +MASTER_SITES= http://www.keplerproject.org/luaexpat/ + +MAINTAINER= pancake@phreaker.net +HOMEPAGE= http://www.tecgraf.puc-rio.br/~diego/luasocket/new/ +COMMENT= XML parser for LUA based on expat + +USE_GNU_TOOLS+= make +USE_BUILDLINK3= yes +MAKEFILE= makefile + +do-install: + ${INSTALL_DATA} ${WRKSRC}/liblxp.so ${PREFIX}/lib/liblualxp.so + ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/lua + ${INSTALL_DATA} ${WRKSRC}/test.lua ${PREFIX}/share/examples/lua/lxp.lua + +.include "../../textproc/expat/buildlink3.mk" +.include "../../lang/lua/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |