stages: 2/04-iso: Do not include kernel build/source tree in the LiveCD
[dragora.git] / recipes / x-apps / feh / recipe
blobc597b8921e3ced4dd2c541fc32707890ce4b2d1c
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.9.1
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      curl=1 exif=1 inotify=1 stat64=1 magic=1
67     make -j${jobs} V=1 \
68      PREFIX=/usr \
69      doc_dir="$destdir/$docsdir" \
70      example_dir="$destdir/${docsdir}/examples" \
71      curl=1 exif=1 inotify=1 stat64=1 magic=1 \
72      DESTDIR="$destdir" install
74     strip --strip-unneeded "${destdir}/usr/bin/feh"
76     # Compress and link man pages (if needed)
77     if test -d "${destdir}/$mandir"
78     then
79         (
80             cd "${destdir}/$mandir"
81             find . -type f -exec lzip -9 {} +
82             find . -type l | while read -r file
83             do
84                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
85                 rm -- "$file"
86             done
87         )
88     fi
90     # Copy documentation
91     mkdir -p "${destdir}/$docsdir"
92     cp -p $docs "${destdir}/$docsdir"