diff options
author | agc <agc> | 2010-02-26 22:03:00 +0000 |
---|---|---|
committer | agc <agc> | 2010-02-26 22:03:00 +0000 |
commit | 1d3839ab7f918f032f97f27caa293cd34aa4c4cb (patch) | |
tree | 111b508684dd6cf1338d9c20c570d98575deabda /www/lua-curl/Makefile | |
parent | 93ed222e9753d486eaba5422428a274b379f4dc1 (diff) | |
download | pkgsrc-1d3839ab7f918f032f97f27caa293cd34aa4c4cb.tar.gz |
initial import of lua-curl-0.2 into the packages collection.
Lua support for libcurl.
Connect and communicate to many different types of servers with many
different types of protocols.
This project is not a fork of LuaCURL, which is a direct mapping of
parts of the libcurl-easy interface.
The intent of Lua-cURL is to adapt the
* Easy Interface
* Multi Interface
* Shared Interface
of libcurl to the functionality of Lua (for example by using iterators
instead of callbacks when possible).
Diffstat (limited to 'www/lua-curl/Makefile')
-rw-r--r-- | www/lua-curl/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/www/lua-curl/Makefile b/www/lua-curl/Makefile new file mode 100644 index 00000000000..147b5b13a0a --- /dev/null +++ b/www/lua-curl/Makefile @@ -0,0 +1,25 @@ +# $NetBSD: Makefile,v 1.1.1.1 2010/02/26 22:03:00 agc Exp $ +# + +DISTNAME= lua-curl-0.2 +CATEGORIES= www +MASTER_SITES= http://luaforge.net/frs/download.php/2634/ + +MAINTAINER= agc@NetBSD.org +HOMEPAGE= http://lua-curl.luaforge.net/ +COMMENT= Full lua bindings for libcurl +LICENSE= mit + +PKG_DESTDIR_SUPPORT= user-destdir + +GNU_CONFIGURE= yes +USE_LIBTOOL= yes +USE_LANGUAGES+= c c++ +USE_TOOLS+= pkg-config + +AUTO_MKDIRS= yes + +.include "../../www/curl/buildlink3.mk" +.include "../../lang/lua/module.mk" + +.include "../../mk/bsd.pkg.mk" |