recipes: Honor CPPFLAGS (through QICPPFLAGS) whenever is possible
[dragora.git] / recipes / tools / dialog / recipe
blob54674697feacac8c9911603192c92f87311d4e03
1 # Build recipe for dialog.
3 # Copyright (c) 2017-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=dialog
21 version=1.3-20210117
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=tools
27 tarname=${program}-${version}.tgz
29 # Remote source(s)
30 fetch=http://invisible-mirror.net/archives/dialog/$tarname
32 description="
33 Display dialog boxes in scripts.
35 Dialog is a program that will let you present a variety
36 of questions or display messages in nice looking color
37 non-graphical dialog boxes from a shell or perl script.
40 homepage=http://www.gnu.org/software/ncurses
41 license=LGPLv2.1
43 # Source documentation
44 docs="CHANGES COPYING README VERSION"
45 docsdir="${docdir}/${program}-${version}"
47 # Custom source directory
48 srcdir=${program}-${version}
50 build()
52     unpack "${tardir}/$tarname"
54     cd "$srcdir"
56     # Set sane permissions
57     chmod -R u+w,go-w,a+rX-s .
59     ./configure CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS -static" \
60      $configure_args \
61      --libdir=/usr/lib${libSuffix} \
62      --mandir=$mandir \
63      --with-ncursesw \
64      --disable-rpath-hack \
65      --build="$(gcc -dumpmachine)"
67     make -j${jobs}
68     make -j${jobs} DESTDIR="$destdir" install
70     # Insert the look & feel for Dragora 3+.  ;-)
72     mkdir -p "${destdir}/etc"
73     cp -p "${worktree}/archive/dialog/dialogrc" "${destdir}/etc/"
74     chmod 644 "${destdir}/etc/dialogrc"
76     # To manage .new (config) files via graft(8)
77     touch "${destdir}/etc/.graft-config"
79     # Compress man page and copy documentation
81     lzip -9 "${destdir}/${mandir}/man1/dialog.1"
83     mkdir -p "${destdir}${docsdir}"
84     cp -p $docs "${destdir}${docsdir}"