sources: SOURCELIST.txt: sorted
[dragora.git] / recipes / networking / curl / recipe
blob8c9dbbb1d804120391af8a41c22670549d3bcd0b
1 # Build recipe for curl.
3 # Copyright (c) 2018 Mateus P. Rodrigues, <mprodrigues@dragora.org>.
4 # Copyright (c) 2018-2019 Matias A. Fonzo, <selk@dragora.org>.
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 #    http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
18 program=curl
19 version=7.66.0
20 release=1
22 # Set 'outdir' for a nice and well-organized output directory
23 outdir="${outdir}/${arch}/networking"
25 tarname=${program}-${version}.tar.bz2
27 # Remote source(s)
28 fetch=http://curl.haxx.se/download/$tarname
30 description="
31 Command line tool and library for transferring data with URLs.
33 cURL is a powerful command line tool for transferring data supporting
34 various protocolos, including DICT, FILE, FTP, FTPS, Gopher, HTTP,
35 HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP,
36 SMB, SMBS, SMTP, SMTPS, Telnet and TFTP.
39 homepage=http://curl.haxx.se/
40 license="Custom MIT/X derivate"
42 # Source documentation
43 docs="CHANGES COPYING README RELEASE-NOTES"
44 docsdir="${docdir}/${program}-${version}"
46 build()
48     set -e
50     unpack "${tardir}/$tarname"
52     cd "$srcdir"
54     # Set sane permissions
55     chmod -R u+w,go-w,a+rX-s .
57     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
58      $configure_args \
59      --libdir=/usr/lib${libSuffix} \
60      --infodir=$infodir \
61      --mandir=$mandir \
62      --enable-static=yes \
63      --enable-shared=yes \
64      --enable-ipv6 \
65      --enable-pthreads \
66      --enable-threaded-resolver \
67      --with-ca-path=/etc/ssl/certs \
68      --with-ca-bundle=/etc/ssl/cert.pem \
69      --build="$(cc -dumpmachine)"
71     make -j${jobs} V=1
72     make -j${jobs} DESTDIR="$destdir" install-strip
74     # Compress and link man pages (if needed)
75     if test -d "${destdir}/$mandir"
76     then
77         (
78             cd "${destdir}/$mandir"
79             find . -type f -exec lzip -9 '{}' +
80             find . -type l | while read -r file
81             do
82                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
83                 rm -- "$file"
84             done
85         )
86     fi
88     # Copy documentation
89     mkdir -p "${destdir}${docsdir}"
90     cp -p $docs "${destdir}${docsdir}"