recipes: tools/cryptsetup: Update recipe
[dragora.git] / recipes / devel / gdb / recipe
blobbe70a049af56c80397859e9f98654568d2b5b337
1 # Build recipe for gdb.
3 # Copyright (c) 2018-2019, 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=gdb
21 version=11.1
22 release=1
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://ftp.gnu.org/gnu/gdb/$tarname
32 description="
33 The GNU debugger.
35 GDB, the GNU Project debugger, allows you to see what is going on
36 inside another program while it executes, or what another program
37 was doing at the moment it crashed.
40 homepage=https://www.gnu.org/software/gdb
41 license="GPLv2+, GPLv3+, LGPLv2, LGPLv3"
43 # Source documentation
44 docs="COPYING* ChangeLog README*"
45 docsdir="${docdir}/${program}-${version}"
47 build()
49     unpack "${tardir}/$tarname"
51     cd "$srcdir"
53     # Set sane permissions
54     chmod -R u+w,go-w,a+rX-s .
56     # Create a separate build directory
57     rm -rf BUILD
58     mkdir BUILD
59     cd BUILD
61     ../configure CPPFLAGS="$QICPPFLAGS" \
62     CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
63      $configure_args \
64      --libdir=/usr/lib${libSuffix} \
65      --infodir=$infodir \
66      --mandir=$mandir \
67      --docdir=$docsdir \
68      --enable-compressed-debug-sections=none \
69      --with-python=/usr/bin/python3 \
70      --with-system-zlib \
71      --with-system-readline \
72      --with-guile=guile-3.0 \
73      --build="$(gcc -dumpmachine)"
75     make -j${jobs} V=1
76     make -j${jobs} DESTDIR="$destdir" install
78     cd ../
80     # Delete generated charset.alias
81     rm -f "${destdir}/usr/lib${libSuffix}/charset.alias"
83     # Delete files belonging to the binutils package
84     rm -f \
85      "${destdir}"/usr/include/*.h \
86      "${destdir}/usr/lib${libSuffix}/libbfd.a" \
87      "${destdir}/usr/lib${libSuffix}/libopcodes.a" \
88      "${destdir}/usr/lib${libSuffix}/libbfd.la" \
89      "${destdir}/usr/lib${libSuffix}/libopcodes.la" \
90      "${destdir}/${infodir}/bdf.info"
92     # Compress info documents deleting index file for the package
93     if test -d "${destdir}/$infodir"
94     then
95         rm -f "${destdir}/${infodir}/dir"
96         lzip -9 "${destdir}/${infodir}"/*
97     fi
99     # Compress and link man pages (if needed)
100     if test -d "${destdir}/$mandir"
101     then
102         (
103             cd "${destdir}/$mandir"
104             find . -type f -exec lzip -9 {} +
105             find . -type l | while read -r file
106             do
107                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
108                 rm -- "$file"
109             done
110         )
111     fi
113     # Copy documentation
114     mkdir -p "${destdir}/$docsdir"
115     cp -p $docs "${destdir}/$docsdir"