recipes: move dragora-ice to ../testing; move some recipes to community/
[dragora.git] / recipes / libs / libedit / recipe
blobebc0a1be33b66601b4103710cb51ae7703dd0d9f
1 # Build recipe for libedit.
3 # Copyright (c) 2016-2019 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=libedit
18 version=20190324-3.1
19 pkgversion=$(echo $version | tr - _)
20 release=1
22 # Set 'outdir' for a nice and well-organized output directory
23 outdir="${outdir}/${arch}/libs"
25 tarname=${program}-${version}.tar.gz
27 # Remote source(s)
28 fetch=http://thrysoee.dk/editline/$tarname
30 description="
31 A command line editor library.
33 This is a port of the NetBSD Editline library (libedit).
34 This Berkeley-style licensed command line editor library
35 provides generic line editing, history, and tokenization
36 functions, similar to those found in GNU Readline.
39 homepage=http://thrysoee.dk/editline
40 license=BSD
42 # Source documentation
43 docs="COPYING ChangeLog THANKS"
44 docsdir="${docdir}/${program}-${version}"
46 build()
48     unpack "${tardir}/$tarname"
50     cd "$srcdir"
52     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
53      $configure_args \
54      --libdir=/usr/lib${libSuffix} \
55      --mandir=$mandir \
56      --docdir=$docsdir \
57      --enable-static \
58      --enable-shared \
59      --build="$(cc -dumpmachine)"
61     make -j${jobs} V=1
62     make -j${jobs} DESTDIR="$destdir" install-strip
64     # This is provided by the readline package
65     rm -f "${destdir}/${mandir}/man3/history.3"
67     # Compress and link man pages (if needed)
68     if [ -d "${destdir}/$mandir" ] ; then
69         (
70             cd "${destdir}/$mandir"
71             find . -type f -exec lzip -9 '{}' +
72             find . -type l | while read -r file
73             do
74                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
75                 rm -- "$file"
76             done
77         )
78     fi
80     # Copy documentation
81     mkdir -p "${destdir}${docsdir}"
82     cp -p $docs "${destdir}${docsdir}"