3 # Copyright (c) 2016-2017, 2021-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
24 # Define a category for the output of the package name
27 tarname=${program}-${version}.tar.gz
30 fetch=https://github.com/gavinhoward/bc/releases/download/${version}/$tarname
33 An arbitrary precision numeric processing language.
35 Bc is an arbitrary precision numeric processing language. Syntax is
36 similar to C, but differs in many substantial areas. It supports
37 interactive execution of statements.
39 This is the version of bc maintained by Gavid D. Howard.
42 homepage=https://github.com/gavinhoward/bc
45 # Source documentation
46 docs="LICENSE.md NEWS.md NOTICE.md README.md"
47 docsdir="${docdir}/${program}-${version}"
51 unpack "${tardir}/$tarname"
55 # Set sane permissions
56 chmod -R u+w,go-w,a+rX-s .
58 env CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS -O3" \
59 LDFLAGS="$QILDFLAGS -static" \
62 --libdir=/usr/lib${libSuffix} \
64 --disable-generated-tests \
68 make -j${jobs} DESTDIR="$destdir" install
70 # Compress and link man pages (if needed)
71 if test -d "${destdir}/$mandir"
74 cd "${destdir}/$mandir"
75 find . -type f -exec lzip -9 {} +
76 find . -type l | while read -r file
78 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
85 mkdir -p "${destdir}/$docsdir"
86 cp -p $docs "${destdir}/$docsdir"