recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / devel / bc / recipe
blob33c5f1effa171324b179178f4c5e9da3e8d755b9
1 # Build recipe for bc.
3 # Copyright (c) 2016-2017 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 program=bc
18 version=1.07.1
19 release=1
21 # Define a category for the output of the package name
22 pkgcategory=devel
24 tarname=${program}-${version}.tar.gz
26 # Remote source(s)
27 fetch=http://ftp.gnu.org/gnu/bc/$tarname
29 description="
30 An arbitrary precision numeric processing language.
32 Bc is an arbitrary precision numeric processing language.  Syntax is
33 similar to C, but differs in many substantial areas.  It supports
34 interactive execution of statements.
36 Bc is a utility included in the POSIX P1003.2/D11 draft standard.
37 Since the POSIX document does not specify how bc must be implemented,
38 this version does not use the historical method of having bc be a
39 compiler for the dc calculator.  This version has a single executable
40 that both compiles the language and runs the resulting 'byte code'.
41 The byte code is not the dc language.
44 homepage=http://www.gnu.org/software/bc
45 license="GPLv2+, LGPLv2.1"
47 # Source documentation
48 docs="AUTHORS COPYING* ChangeLog FAQ NEWS README Examples/"
49 docsdir="${docdir}/${program}-${version}"
51 build()
53     set -e
55     unpack "${tardir}/$tarname"
57     cd "$srcdir"
59     # Set sane permissions
60     chmod -R u+w,go-w,a+rX-s .
62     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS -static" \
63      $configure_args \
64      --libdir=/usr/lib${libSuffix} \
65      --infodir=$infodir \
66      --mandir=$mandir \
67      --with-readline \
68      --build="$(cc -dumpmachine)"
70     make -j${jobs}
71     make -j${jobs} DESTDIR="$destdir" install
73     # Compress info documents deleting index file for the package
74     if test -d "${destdir}/$infodir"
75     then
76         rm -f "${destdir}/${infodir}/dir"
77         lzip -9 "${destdir}/${infodir}"/*
78     fi
80     # Compress and link man pages (if needed)
81     if test -d "${destdir}/$mandir"
82     then
83         (
84             cd "${destdir}/$mandir"
85             find . -type f -exec lzip -9 '{}' +
86             find . -type l | while read -r file
87             do
88                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
89                 rm -- "$file"
90             done
91         )
92     fi
94     # Copy documentation
95     mkdir -p "${destdir}${docsdir}"
97     for file in $docs
98     do
99         cp -p -r $file "${destdir}${docsdir}"
100     done