Reconfigure Trinity options, paths, and other adjustments
[dragora.git] / recipes / devel / pkgconf / recipe
blob4112a3484d9827791cba49745f7857c2599b8526
1 # Build recipe for pkgconf.
3 # Copyright (c) 2016-2021 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=pkgconf
21 version=1.7.3
22 release=2
24 # Define a category for the output of the package name
25 pkgcategory=devel
27 tarname=${program}-${version}.tar.gz
29 # Remote source(s)
30 fetch=https://distfiles.dereferenced.org/pkgconf/$tarname
32 description="
33 Package compiler and linker metadata toolkit.
35 pkgconf is a program which helps to configure compiler and linker flags
36 for development frameworks.  It is similar to pkg-config from
37 freedesktop.org.
39 libpkgconf is a library which provides access to most of pkgconf's
40 functionality, to allow other tooling such as compilers and IDEs
41 to discover and use frameworks configured by pkgconf.
44 homepage=https://git.dereferenced.org/pkgconf/pkgconf
45 license=Custom
47 # Source documentation
48 docs="AUTHORS COPYING NEWS README*"
49 docsdir="${docdir}/${program}-${version}"
51 build()
53     unpack "${tardir}/$tarname"
55     cd "$srcdir"
57     # Set sane permissions
58     chmod -R u+w,go-w,a+rX-s .
60     ./configure CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
61      $configure_args \
62      --libdir=/usr/lib${libSuffix} \
63      --mandir=$mandir \
64      --docdir=$docsdir \
65      --enable-static=yes \
66      --enable-shared=yes \
67      --with-pkg-config-dir="/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig" \
68      --build="$(gcc -dumpmachine)"
70     make -j${jobs} V=1
71     #make -j${jobs} check;      # It needs "kyua" ...
72     make -j${jobs} DESTDIR="$destdir" install-strip
74     # Create symlink-compatibility for those
75     # programs looking for `pkg-config'
76     ln -s pkgconf "${destdir}/usr/bin/pkg-config"
78     # Include profile file
79     mkdir -p "${destdir}/etc/profile.d"
80     cp -p "${worktree}/archive/pkgconf/etc/profile.d/pkgconf.sh" \
81            "${destdir}/etc/profile.d/"
82     chmod 644 "${destdir}/etc/profile.d/pkgconf.sh"
84     # To handle config file(s)
85     touch "${destdir}/etc/profile.d/.graft-config"
87     # Compress and link man pages (if needed)
88     if test -d "${destdir}/$mandir"
89     then
90         (
91             cd "${destdir}/$mandir"
92             find . -type f -exec lzip -9 {} +
93             find . -type l | while read -r file
94             do
95                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
96                 rm -- "$file"
97             done
98         )
99     fi
101     # Copy documentation
102     mkdir -p "${destdir}${docsdir}"
103     cp -p $docs "${destdir}${docsdir}"