1 # Build recipe for dialog.
3 # Copyright (c) 2017-2023 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
24 # Define a category for the output of the package name
27 tarname=${program}-${version}.tgz
30 fetch=https://invisible-mirror.net/archives/dialog/$tarname
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=https://www.gnu.org/software/ncurses
43 # Source documentation
44 docs="CHANGES COPYING README VERSION"
45 docsdir="${docdir}/${program}-${version}"
47 # Custom source directory
48 srcdir=${program}-${version}
52 unpack "${tardir}/$tarname"
56 # Set sane permissions
57 chmod -R u+w,go-w,a+rX-s .
59 ./configure CPPFLAGS="$QICPPFLAGS" \
60 CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS -lgpm" \
62 --libdir=/usr/lib${libSuffix} \
66 --disable-rpath-hack \
67 --build="$(gcc -dumpmachine)"
70 make -j${jobs} DESTDIR="$destdir" install
72 # Insert the look & feel for Dragora 3+. ;-)
74 mkdir -p "${destdir}/etc"
75 cp -p "${worktree}/archive/dialog/dialogrc" "${destdir}/etc/"
76 chmod 644 "${destdir}/etc/dialogrc"
78 # To manage .new (config) files via graft(8)
79 touch "${destdir}/etc/.graft-config"
81 # Compress man page and copy the documentation
83 lzip -9 "${destdir}/${mandir}/man1/dialog.1"
85 mkdir -p "${destdir}/$docsdir"
86 cp -p $docs "${destdir}/$docsdir"