]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blame - pkgs/core/curl/curl.nm
libssh2: Update package to be built with the new version of the buildsystem.
[people/ms/ipfire-3.x.git] / pkgs / core / curl / curl.nm
CommitLineData
8b63a194 1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include $(PKGROOT)/Include
26
27PKG_NAME = curl
9e4121ab 28PKG_VER = 7.21.0
8b63a194 29PKG_REL = 0
30
31PKG_MAINTAINER =
32PKG_GROUP = Application/Internet
33PKG_URL = http://www.curl.haxx.se/
34PKG_LICENSE = MIT
35PKG_SUMMARY = A utility for getting files from remote servers (FTP, HTTP, and others).
36
8722fc73
MT
37PKG_BUILD_DEPS+= pkg-config
38PKG_DEPS += libidn openldap libssh2 openssh openssl zlib
8b63a194 39
40define PKG_DESCRIPTION
41 cURL is a tool for getting files from HTTP, FTP, FILE, LDAP, LDAPS, \
42 DICT, TELNET and TFTP servers, using any of the supported protocols. \
43 cURL is designed to work without user interaction or any kind of \
44 interactivity. cURL offers many useful capabilities, like proxy support, \
45 user authentication, FTP upload, HTTP post, and file transfer resume.
46endef
47
9e4121ab 48PKG_TARBALL = $(THISAPP).tar.gz
8b63a194 49
8b63a194 50CONFIGURE_OPTIONS += \
8b63a194 51 --disable-static \
52 --with-ca-bundle=/etc/pki/tls/certs/ca-bundle.crt \
53 --with-libidn \
54 --with-libssh2 \
55 --with-nss \
56 --enable-ldaps \
57 --enable-ipv6
8b63a194 58
bfb883b3 59# Doesn't work
8b63a194 60#define STAGE_TEST
61# cd $(DIR_APP) && make check
62#endef