changing license to Apache 2.0 for all the recipes, except for Xorg
[dragora.git] / recipes / tools / less / recipe
blob7de65b79fa9f857f9d5455e5456ac55cd42b7ef4
1 # Build recipe for less.
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=less
18 version=487
19 release=1
21 tarname=${program}-${version}.tar.gz
23 # Remote source(s)
24 fetch=http://ftp.gnu.org/gnu/less/$tarname
26 description="
27 A text file viewer.
29 Less is a pager.  A pager is a program that displays text files.
31 This package also includes the 'lesspipe.sh' script.
34 homepage=http://www.gnu.org/software/less
35 license=GPLv3+
37 # Source documentation
38 docs="COPYING LICENSE NEWS README"
39 docsdir="${docdir}/${program}-${version}"
41 build()
43     set -e
45     unpack "${tardir}/$tarname"
47     cd "$srcdir"
49     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS -static" \
50      $configure_args \
51      --mandir=$mandir \
52      --with-regex=pcre \
53      --with-secure \
54      --build="$(cc -dumpmachine)"
56     make -j${jobs} V=1
57     make -j${jobs} DESTDIR="$destdir" install
59     # Include our custom lesspipe.sh version (which has support for lzip)
61     cp -p "${worktree}/archive/less/usr/bin/lesspipe.sh" "${destdir}/usr/bin"
62     chmod 755 "${destdir}/usr/bin/lesspipe.sh"
64     # Include profile file
65     mkdir -p "${destdir}/etc/profile.d"
66     cat "${worktree}/archive/less/etc/profile.d/less.sh" \
67       > "${destdir}/etc/profile.d/less.sh"
69     # To handle config file(s)
70     touch "${destdir}/etc/profile.d/.graft-config"
72     # Compress and link man pages (if needed)
73     if test -d "${destdir}/$mandir"
74     then
75         (
76             cd "${destdir}/$mandir"
77             find . -type f -exec lzip -9 '{}' +
78             find . -type l | while read -r file
79             do
80                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
81                 rm -- "$file"
82             done
83         )
84     fi
86     # Copy documentation
87     mkdir -p "${destdir}${docsdir}"
89     for file in $docs
90     do
91         cp -p $file "${destdir}${docsdir}"
92     done