recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / tools / mc / recipe
blobae9f33906c0af1949aa8195c02c8731e8475fe45
1 # Build recipe for mc (Midnight Commander).
3 # Copyright (c) 2017-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=mc
18 version=4.8.23
19 release=1
21 # Define a category for the output of the package name
22 pkgcategory=tools
24 tarname=${program}-${version}.tar.bz2
26 # Remote source(s)
27 fetch=http://ftp.midnight-commander.org/$tarname
29 description="
30 File manager and user shell.
32 GNU Midnight Commander can be used locally or remotely, on the console
33 or under X Window System.  By using full screen space of the terminals,
34 it provides an intuitive user interface to the operating system,
35 aiming to be a useful tool for users with any level of experience,
36 from a newbie to a guru.
39 homepage=http://www.midnight-commander.org
40 license=GPLv3+
42 # Source documentation
43 docs="AUTHORS COPYING ChangeLog NEWS README"
44 docsdir="${docdir}/${program}-${version}"
46 build()
48     set -e
50     unpack "${tardir}/$tarname"
52     cd "$srcdir"
54     # Set sane permissions
55     chmod -R u+w,go-w,a+rX-s .
57     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
58      $configure_args \
59      --libdir=/usr/lib${libSuffix} \
60      --infodir=$infodir \
61      --mandir=$mandir \
62      --docdir=$docsdir \
63      --enable-nls \
64      --with-search-engine=pcre \
65      --with-screen=ncurses \
66      --without-x \
67      --with-gpm-mouse \
68      --build="$(cc -dumpmachine)"
70     make -j${jobs} V=1
71     make -j${jobs} DESTDIR="$destdir" install
73     # To manage .new files
74     touch "${destdir}/etc/mc/.graft-config"
76     # Compress info documents deleting index file for the package
77     if test -d "${destdir}/$infodir"
78     then
79         rm -f "${destdir}/${infodir}/dir"
80         lzip -9 "${destdir}/${infodir}"/*
81     fi
83     # Compress and link man pages (if needed)
84     if test -d "${destdir}/$mandir"
85     then
86         (
87             cd "${destdir}/$mandir"
88             find . -type f -exec lzip -9 '{}' +
89             find . -type l | while read -r file
90             do
91                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
92                 rm -- "$file"
93             done
94         )
95     fi
97     # Copy documentation
98     mkdir -p "${destdir}${docsdir}"
99     cp -p $docs "${destdir}${docsdir}"