recipes: libs/libuv: upgraded to version 1.24.1
[dragora.git] / recipes / libs / libuv / recipe
blob5c7c40a600a3765707a804e14b8468d3f43102c8
1 # Build recipe for libuv.
3 # Copyright (c) 2018 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=libuv
18 version=v1.24.1
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/libs"
24 pkgversion="${version#v*}"
26 tarname=${program}-${version}.tar.gz
28 # Remote source(s)
29 fetch=http://dist.libuv.org/dist/${version}/$tarname
31 homepage=http://www.libuv.org
32 license=MIT
34 description="
35 An asynchronous I/O library.
37 libuv is a multi-platform support library with a focus on asynchronous
38 I/O.  See $homepage for more information.
41 # Source documentation
42 docs="AUTHORS CONTRIBUTING.md LICENSE* MAINTAINERS.md README.md"
43 docsdir="${docdir}/${program}-${pkgversion}"
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     sh ./autogen.sh
58     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
59      $configure_args \
60      --libdir=/usr/lib${libSuffix} \
61      --mandir=$mandir \
62      --docdir=$docsdir \
63      --enable-static=no \
64      --enable-shared=yes \
65      --build="$(cc -dumpmachine)"
67     make -j${jobs} V=1
68     #make -C docs man;  # It needs "sphinx"
69     make -j${jobs} DESTDIR="$destdir" install-strip
71     # Compress and link man pages (if needed)
72     if test -d "${destdir}/$mandir"
73     then
74         (
75             cd "${destdir}/$mandir"
76             find . -type f -exec lzip -9 '{}' +
77             find . -type l | while read -r file
78             do
79                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
80                 rm -- "$file"
81             done
82         )
83     fi
85     # Copy documentation
86     mkdir -p "${destdir}${docsdir}"
87     cp -p $docs "${destdir}${docsdir}"