annotate src/curl.mk @ 2102:57ec66c86927

package curl: enable sspi
author Mark Brand <mabrand@mabrand.nl>
date Wed, 16 Nov 2011 23:19:43 +0100
parents 1883a336e086
children ce4086469ae3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
641
dab071eac9c0 simplified file markers
Volker Grabsch <vog@notjusthosting.com>
parents: 552
diff changeset
1 # This file is part of mingw-cross-env.
714
29f1ba4559ae point consequently to "doc/index.html" instead of "doc/index.html or doc/README"
Volker Grabsch <vog@notjusthosting.com>
parents: 641
diff changeset
2 # See doc/index.html for further information.
414
d2a6561bcb6d add a copyright notice and license to each source file
Volker Grabsch <vog@notjusthosting.com>
parents: 377
diff changeset
3
147
f787c299f41c translated package: curl
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 # cURL
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 274
diff changeset
5 PKG := curl
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 432
diff changeset
6 $(PKG)_IGNORE :=
2098
3aab74b6f626 update package curl
Mark Brand <mabrand@mabrand.nl>
parents: 2046
diff changeset
7 $(PKG)_VERSION := 7.23.0
3aab74b6f626 update package curl
Mark Brand <mabrand@mabrand.nl>
parents: 2046
diff changeset
8 $(PKG)_CHECKSUM := 026cbf70672174f96ac719d96025a505e00e3f6b
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 274
diff changeset
9 $(PKG)_SUBDIR := curl-$($(PKG)_VERSION)
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 274
diff changeset
10 $(PKG)_FILE := curl-$($(PKG)_VERSION).tar.bz2
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 274
diff changeset
11 $(PKG)_WEBSITE := http://curl.haxx.se/libcurl/
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 274
diff changeset
12 $(PKG)_URL := http://curl.haxx.se/download/$($(PKG)_FILE)
2026
4fc507178eb4 package curl: add missing dependency on libssh2
Tony Theodore <tonyt@logyst.com>
parents: 1985
diff changeset
13 $(PKG)_DEPS := gcc gnutls libidn libssh2
147
f787c299f41c translated package: curl
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14
f787c299f41c translated package: curl
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 define $(PKG)_UPDATE
1453
050d1e842565 improved update script of package curl
Volker Grabsch <vog@notjusthosting.com>
parents: 1351
diff changeset
16 wget -q -O- 'http://curl.haxx.se/download/?C=M;O=D' | \
050d1e842565 improved update script of package curl
Volker Grabsch <vog@notjusthosting.com>
parents: 1351
diff changeset
17 $(SED) -n 's,.*curl-\([0-9][^"]*\)\.tar.*,\1,p' | \
147
f787c299f41c translated package: curl
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 head -1
f787c299f41c translated package: curl
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 endef
f787c299f41c translated package: curl
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20
f787c299f41c translated package: curl
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21 define $(PKG)_BUILD
f787c299f41c translated package: curl
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
22 # wine confuses the cross-compiling detection, so set it explicitly
759
bf4bcb3370fa changed coding style: make "-i" always the first argument of $(SED) (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
23 $(SED) -i 's,cross_compiling=no,cross_compiling=yes,' '$(1)/configure'
147
f787c299f41c translated package: curl
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
24 cd '$(1)' && ./configure \
f787c299f41c translated package: curl
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 --host='$(TARGET)' \
f787c299f41c translated package: curl
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
26 --disable-shared \
f787c299f41c translated package: curl
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
27 --prefix='$(PREFIX)/$(TARGET)' \
1454
e0507874b083 fix build scripts of packages: curl gnutls xerces
Volker Grabsch <vog@notjusthosting.com>
parents: 1453
diff changeset
28 --with-gnutls \
e0507874b083 fix build scripts of packages: curl gnutls xerces
Volker Grabsch <vog@notjusthosting.com>
parents: 1453
diff changeset
29 --with-libidn \
2102
57ec66c86927 package curl: enable sspi
Mark Brand <mabrand@mabrand.nl>
parents: 2100
diff changeset
30 --enable-sspi \
2046
45dbac6fcb14 package libssh2: use libgcrypt instead of openssl
Tony Theodore <tonyt@logyst.com>
parents: 2026
diff changeset
31 LIBS="-lgcrypt -liconv `$(PREFIX)/$(TARGET)/bin/gpg-error-config --libs` -lssh2"
2100
1883a336e086 package curl: really keep curl.exe
Mark Brand <mabrand@mabrand.nl>
parents: 2099
diff changeset
32 $(MAKE) -C '$(1)' -j '$(JOBS)' install
1455
94cdbe762889 test program for package curl
Volker Grabsch <vog@notjusthosting.com>
parents: 1454
diff changeset
33
94cdbe762889 test program for package curl
Volker Grabsch <vog@notjusthosting.com>
parents: 1454
diff changeset
34 '$(TARGET)-gcc' \
94cdbe762889 test program for package curl
Volker Grabsch <vog@notjusthosting.com>
parents: 1454
diff changeset
35 -W -Wall -Werror -ansi -pedantic \
94cdbe762889 test program for package curl
Volker Grabsch <vog@notjusthosting.com>
parents: 1454
diff changeset
36 '$(2).c' -o '$(PREFIX)/$(TARGET)/bin/test-curl.exe' \
94cdbe762889 test program for package curl
Volker Grabsch <vog@notjusthosting.com>
parents: 1454
diff changeset
37 `'$(TARGET)-pkg-config' libcurl --cflags --libs`
147
f787c299f41c translated package: curl
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
38 endef