recipes: Adjust 'docsdir' variable to be consistent with the current recipe format
[dragora.git] / recipes / devel / guile / recipe
blobfbc0cd710f737dd4c19d7ae3bff798cfffcde93e
1 # Build recipe for guile.
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=guile
21 version=3.0.7
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=devel
27 tarname=${program}-${version}.tar.lz
29 # Remote source(s)
30 fetch=https://ftp.gnu.org/gnu/guile/$tarname
32 homepage=https://www.gnu.org/software/guile/
34 description="
35 The GNU Guile programming language.
37 Guile is designed to help programmers create flexible applications that
38 can be extended by users or other programmers with plug-ins, modules,
39 or scripts.  With Guile you can create applications and games for the
40 desktop, the Web, the command-line, and more.
42 For more information, visit:
43 $homepage
46 license="GPLv3+, LGPLv3+"
48 # Source documentation
49 docs="AUTHORS COPYING* ChangeLog GUILE-VERSION HACKING NEWS README THANKS"
50 docsdir="${docdir}/${program}-${version}"
52 build()
54     unpack "${tardir}/$tarname"
56     cd "$srcdir"
58     # Set sane permissions
59     chmod -R u+w,go-w,a+rX-s .
61     ./configure CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" \
62     LDFLAGS="$QILDFLAGS" \
63      $configure_args \
64      --libdir=/usr/lib${libSuffix} \
65      --infodir=$infodir \
66      --mandir=$mandir \
67      --docdir=$docsdir \
68      --enable-static=no \
69      --enable-shared=yes \
70      --disable-rpath \
71      --with-threads \
72      --build="$(gcc -dumpmachine)"
74     make -j${jobs} V=1
75     make V=1 html
76     make -j${jobs} DESTDIR="$destdir" install-strip
77     make -j${jobs} DESTDIR="$destdir" install-html
79     # Delete generated charset.alias
80     rm -f "${destdir}/usr/lib${libSuffix}/charset.alias"
82     # Move misplaced file(s) for GDB
83     mkdir -p "${destdir}/usr/share/gdb/auto-load/usr/lib${libSuffix}"
84     mv "${destdir}/usr/lib${libSuffix}"/*-gdb.scm \
85        "${destdir}/usr/share/gdb/auto-load/usr/lib${libSuffix}"
87     # Compress info documents deleting index file for the package
88     if test -d "${destdir}/$infodir"
89     then
90         rm -f "${destdir}/${infodir}/dir"
91         lzip -9 "${destdir}/${infodir}"/*
92     fi
94     # Compress and link man pages (if needed)
95     if test -d "${destdir}/$mandir"
96     then
97         (
98             cd "${destdir}/$mandir"
99             find . -type f -exec lzip -9 {} +
100             find . -type l | while read -r file
101             do
102                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
103                 rm -- "$file"
104             done
105         )
106     fi
108     # Copy documentation
109     mkdir -p "${destdir}/$docsdir"
110     cp -p $docs "${destdir}/$docsdir"