recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / networking / wget / recipe
blobdb14ed4a809f64106fbca4936e3f745074b09d21
1 # Build recipe for wget.
3 # Copyright (c) 2017-2019 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 program=wget
18 version=1.20.3
19 release=1
21 # Define a category for the output of the package name
22 pkgcategory=networking
24 tarname=${program}-${version}.tar.lz
26 # Remote source(s)
27 fetch=http://espejito.fder.edu.uy/gnu/wget/$tarname
29 description="
30 The non-interactive network downloader.
32 GNU Wget is a free software package for retrieving files using HTTP,
33 HTTPS, FTP and FTPS the most widely-used Internet protocols.  It is a
34 non-interactive commandline tool, so it may easily be called from
35 scripts, cron jobs, terminals without X-Windows support, etc.
38 homepage=http://www.gnu.org/software/wget
39 license=GPLv3+
41 # Source documentation
42 docs="AUTHORS COPYING ChangeLog NEWS README"
43 docsdir="${docdir}/${program}-${version}"
45 build()
47     set -e
49     unpack "${tardir}/$tarname"
51     cd "$srcdir"
53     # Set sane permissions
54     chmod -R u+w,go-w,a+rX-s .
56     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS -static" \
57      $configure_args \
58      --libdir=/usr/lib${libSuffix} \
59      --infodir=$infodir \
60      --mandir=$mandir \
61      --enable-threads=posix \
62      --with-ssl=openssl \
63      --with-libunistring-prefix=/usr \
64      --with-gpgme-prefix=/usr \
65      --without-included-regex \
66      --build="$(cc -dumpmachine)"
68     make -j${jobs} V=1
69     make -j${jobs} DESTDIR="$destdir" install
71     # To handle config file on post-installation
72     touch "${destdir}/etc/.graft-config"
74     # Remove generated charset.alias
75     rm -f "${destdir}/usr/lib${libSuffix}/charset.alias"
76     rmdir "${destdir}/usr/lib${libSuffix}" || true
78     # Compress info documents deleting index file for the package
79     if test -d "${destdir}/$infodir"
80     then
81         rm -f "${destdir}/${infodir}/dir"
82         lzip -9 "${destdir}/${infodir}"/*
83     fi
85     # Compress and link man pages (if needed)
86     if test -d "${destdir}/$mandir"
87     then
88         (
89             cd "${destdir}/$mandir"
90             find . -type f -exec lzip -9 '{}' +
91             find . -type l | while read -r file
92             do
93                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
94                 rm -- "$file"
95             done
96         )
97     fi
99     # Copy documentation
100     mkdir -p "${destdir}${docsdir}"
101     cp -p $docs "${destdir}${docsdir}/"