strip remaining libraries for the distribution size
[dragora.git] / recipes / tools / file / recipe
blobdb5e914a5e4ec5f2297dde681002539000af3da2
1 # Build recipe for file.
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=file
18 version=5.32
19 release=1
21 tarname=${program}-${version}.tar.gz
23 # Remote source(s)
24 fetch=ftp://ftp.astron.com/pub/file/$tarname
26 description="
27 A file type guesser.
29 The file command is 'a file type guesser', that is, a command-line tool
30 that tells you in words what kind of data a file contains.
33 homepage=http://darwinsys.com/file
34 license=Custom
36 # Source documentation
37 docs="AUTHORS COPYING ChangeLog NEWS README TODO"
38 docsdir="${docdir}/${program}-${version}"
40 build()
42     set -e
44     unpack "${tardir}/$tarname"
46     cd "$srcdir"
48     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
49      $configure_args \
50      --libdir=/usr/lib${libSuffix} \
51      --sysconfdir=/etc/file \
52      --datadir=/etc/file \
53      --infodir=$infodir \
54      --mandir=$mandir \
55      --enable-fsect-man5 \
56      --build="$(cc -dumpmachine)"
58     make -j${jobs} V=1
59     make check
60     make -j${jobs} DESTDIR="$destdir" install-strip
62     # Compress info documents deleting index file for the package
63     if test -d "${destdir}/$infodir"
64     then
65         rm -f "${destdir}/${infodir}/dir"
66         lzip -9 "${destdir}/${infodir}"/*
67     fi
69     # Compress and link man pages (if needed)
70     if test -d "${destdir}/$mandir"
71     then
72         (
73             cd "${destdir}/$mandir"
74             find . -type f -exec lzip -9 '{}' +
75             find . -type l | while read -r file
76             do
77                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
78                 rm -- "$file"
79             done
80         )
81     fi
83     # Copy documentation
84     mkdir -p "${destdir}${docsdir}"
86     for file in $docs
87     do
88         cp -p $file "${destdir}${docsdir}"
89     done