recipes: Adjust 'docsdir' variable to be consistent with the current recipe format
[dragora.git] / recipes / x-apps / scrot / recipe
blobe994da1be36795346cbe56560c353453b1df4ad2
1 # Build recipe for scrot.
3 # Copyright (c) 2018 Markus Tornow, <tornow@riseup.net>.
4 # Copyright (c) 2018, 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=scrot
22 version=0.10.0
23 release=1
25 # Define a category for the output of the package name
26 pkgcategory=x-apps
28 tarname=${program}-${version}.tar.gz
30 # Remote source(s)
31 fetch=https://github.com/dreamer/scrot/archive/v${version}/$tarname
33 description="
34 Command line screen capture util.
36 scrot is a command-line screen capture util like \"import\", but using
37 imlib2.  It has lots of options for autogenerating filenames, and can
38 do fun stuff like taking screenshots of multiple displays and glueing
39 them together.
42 homepage=https://github.com/dreamer/scrot
43 license=MIT
45 # Source documentation
46 docs="AUTHORS COPYING ChangeLog README*"
47 docsdir="${docdir}/${program}-${version}"
49 build()
51     unpack "${tardir}/$tarname"
53     cd "$srcdir"
55     rm -rf BUILD
56     mkdir BUILD
57     cd BUILD
59     CPPFLAGS="$QICPPFLAGS" \
60     CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
61     meson setup $configure_args \
62      --libdir /usr/lib${libSuffix} \
63      --buildtype=release \
64      --strip \
65      ..
67     ninja -j${jobs}
68     DESTDIR="$destdir" ninja -j${jobs} install
70     cd ..
72     lzip -9 "${destdir}/${mandir}/man1/scrot.1"
74     # Copy documentation
75     mkdir -p "${destdir}/$docsdir"
76     cp -p $docs "${destdir}/$docsdir"