stages: 2/04-iso: Do not include kernel build/source tree in the LiveCD
[dragora.git] / recipes / libs / libuv / recipe
blobd66a32dcd74ac0bb6a2ab37de8244b0820f757b9
1 # Build recipe for libuv.
3 # Copyright (c) 2018-2022 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 # Exit immediately on any error
18 set -e
20 program=libuv
21 version=v1.44.2
22 pkgversion="${version#v*}"
23 release=1
25 # Define a category for the output of the package name
26 pkgcategory=libs
28 tarname=${program}-${version}.tar.gz
30 # Remote source(s)
31 fetch=https://dist.libuv.org/dist/${version}/$tarname
33 homepage=https://www.libuv.org
34 license=MIT
36 description="
37 An asynchronous I/O library.
39 libuv is a multi-platform support library with a focus on asynchronous
40 I/O.  See $homepage for more information.
43 # Source documentation
44 docs="AUTHORS CONTRIBUTING.md LICENSE* MAINTAINERS.md README.md"
45 docsdir="${docdir}/${program}-${pkgversion}"
47 build()
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 CPPFLAGS="$QICPPFLAGS" \
59     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
60      $configure_args \
61      --libdir=/usr/lib${libSuffix} \
62      --mandir=$mandir \
63      --docdir=$docsdir \
64      --enable-static=no \
65      --enable-shared=yes \
66      --build="$(gcc -dumpmachine)"
68     make -j${jobs} V=1
69     #make -C docs man;  # It needs "Sphinx"
70     make -j${jobs} DESTDIR="$destdir" install-strip
72     # Compress and link man pages (if needed)
73     if test -d "${destdir}/$mandir"
74     then
75         (
76             cd "${destdir}/$mandir"
77             find . -type f -exec lzip -9 {} +
78             find . -type l | while read -r file
79             do
80                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
81                 rm -- "$file"
82             done
83         )
84     fi
86     # Copy documentation
87     mkdir -p "${destdir}/$docsdir"
88     cp -p $docs "${destdir}/$docsdir"