move the dragora-mouse tool to archive/dragora-tools/ directory
[dragora.git] / recipes / tools / findutils / recipe
blob25daad7938174d59a6d5bf9c1ccf690c518a580f
1 # Build recipe for findutils.
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=findutils
18 version=4.6.0
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/tools"
24 tarname=${program}-${version}.tar.gz
26 # Remote source(s)
27 fetch=http://ftp.gnu.org/pub/gnu/findutils/$tarname
29 description="
30 Utilities to find files.
32 The set of GNU find utilities contains tools to find files
33 such as exact name, creation date, size, permissions, etc.
36 homepage=http://www.gnu.org/software/findutils
37 license=GPLv3+
39 # Source documentation
40 docs="AUTHORS COPYING ChangeLog NEWS README* THANKS TODO"
41 docsdir="${docdir}/${program}-${version}"
43 build()
45     set -e
47     unpack "${tardir}/$tarname"
49     cd "$srcdir"
51     # Set sane permissions
52     chmod -R u+w,go-w,a+rX-s .
54     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS -static" \
55      $configure_args \
56      --libdir=/usr/lib${libSuffix} \
57      --libexecdir=/usr/lib${libSuffix}/locate \
58      --localstatedir=/var/lib/locate \
59      --infodir=$infodir \
60      --mandir=$mandir \
61      --docdir=$docsdir \
62      --build="$(cc -dumpmachine)"
64     make -j${jobs} V=1
65     make -j${jobs} DESTDIR="$destdir" install
67     # Remove locate implementation, replaced by mlocate
68     rm -f "${destdir}/usr/bin/locate"             \
69           "${destdir}/usr/bin/updatedb"           \
70           "${destdir}/${mandir}/man1/locate.1"    \
71           "${destdir}/${mandir}/man1/updatedb.1"  \
72           "${destdir}/${mandir}/man5/locatedb.5"
74     rm -rf "${destdir}/usr/lib${libSuffix}/locate" \
75            "${destdir}/var/lib/locate"
77     # Remove generated charset.alias
78     rm -f "${destdir}/usr/lib${libSuffix}/charset.alias"
79     rmdir "${destdir}/usr/lib${libSuffix}" || true
81     # Compress info documents deleting index file for the package
82     if test -d "${destdir}/$infodir"
83     then
84         rm -f "${destdir}/${infodir}/dir"
85         lzip -9 "${destdir}/${infodir}"/*
86     fi
88     # Compress and link man pages (if needed)
89     if test -d "${destdir}/$mandir"
90     then
91         (
92             cd "${destdir}/$mandir"
93             find . -type f -exec lzip -9 '{}' +
94             find . -type l | while read -r file
95             do
96                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
97                 rm -- "$file"
98             done
99         )
100     fi
102     # Copy documentation
103     mkdir -p "${destdir}${docsdir}"
105     for file in $docs
106     do
107         cp -p $file "${destdir}${docsdir}"
108     done