recipes: Adjust 'docsdir' variable to be consistent with the current recipe format
[dragora.git] / recipes / x-apps / feh / recipe
blob37ae24c359000839c94d64b99b05e952d724eaf2
1 # Build recipe for feh.
3 # Copyright (c) 2018 Markus Tornow, <tornow@riseup.net>.
4 # Copyright (c) 2018-2019, 2021-2022 Matias Fonzo, <selk@dragora.org>.
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 #    http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
18 # Exit immediately on any error
19 set -e
21 program=feh
22 version=3.8
23 release=1
25 # Define a category for the output of the package name
26 pkgcategory=x-apps
28 tarname=${program}-${version}.tar.bz2
30 # Remote source(s)
31 fetch=https://feh.finalrewind.org/"$tarname"
33 description="
34 A fast and light image viewer.
36 Feh is a fast, lightweight image viewer which uses imlib2.  It is
37 command line-driven and supports multiple images through slideshows,
38 thumbnail browsing or multiple windows, and montages or index prints 
39 (using TrueType fonts to display file info).  Advanced features include
40 fast dynamic zooming, progressive loading, loading via HTTP (with
41 reload support for watching webcams), recursive file opening (slideshow
42 of a directory hierarchy), and mouse wheel/keyboard control. 
45 homepage=https://feh.finalrewind.org
46 license="MIT Expat variant"
48 # Source documentation
49 docs="AUTHORS COPYING ChangeLog README.md TODO"
50 docsdir="${docdir}/${program}-${version}"
52 # Limit parallel jobs for this build
53 jobs=1
55 build()
57     unpack "${tardir}/$tarname"
59     cd "$srcdir"
61     # Replace default C flags with the ones provided by Qi
62     sed -i "s/-g -O2/$QICFLAGS/" config.mk
64     make -j${jobs} V=1 PREFIX=/usr
65     make -j${jobs} V=1 \
66      PREFIX=/usr \
67      doc_dir="$destdir/$docsdir" \
68      example_dir="$destdir/${docsdir}/examples" \
69      DESTDIR="$destdir" install
71     strip --strip-unneeded "${destdir}/usr/bin/feh"
73     # Compress and link man pages (if needed)
74     if test -d "${destdir}/$mandir"
75     then
76         (
77             cd "${destdir}/$mandir"
78             find . -type f -exec lzip -9 {} +
79             find . -type l | while read -r file
80             do
81                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
82                 rm -- "$file"
83             done
84         )
85     fi
87     # Copy documentation
88     mkdir -p "${destdir}/$docsdir"
89     cp -p $docs "${destdir}/$docsdir"