recipes: community/*: adjust outdir for the series where this resides
[dragora.git] / recipes / community / x-apps / tint2 / recipe
blob921b22c4cbb6ff16a7f20e1c4e6d5d5bb47ee4ea
1 # Build recipe for tint2.
3 # Copyright (c) 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=tint2
18 version=20190714_7831350
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/community/x-apps"
24 tarname=${program}-${version}.tar.lz
26 # Remote source(s)
27 fetch="
28   http://rsync.dragora.org/current/sources/$tarname
29   http://mirror.cedia.org.ec/dragora/current/sources/$tarname
32 description="
33 tint2 is a simple panel/taskbar made for modern X window managers.
35 It was specifically made for Openbox but it should also work with
36 other window managers (GNOME, KDE, Xfce, etc.).
39 homepage=http://gitlab.com/o9000/tint2
40 license=GPLv2+
42 # Source documentation
43 docsdir="${docdir}/${program}-${version}"
45 build()
47     set -e
49     unpack "${tardir}/$tarname"
51     cd "$srcdir"
53     # Set sane permissions
54     chmod -R u+w,go-w,a+rX-s .
56     mkdir BUILD
57     cd BUILD
59     cmake \
60      -DCMAKE_C_FLAGS:STRING="$QICFLAGS"               \
61      -DCMAKE_EXE_LINKER_FLAGS:STRING="$QILDFLAGS"     \
62      -DCMAKE_INSTALL_PREFIX=/usr                      \
63      -DCMAKE_INSTALL_MANDIR=$mandir                   \
64      -DCMAKE_INSTALL_DOCDIR=$docsdir                  \
65      -DCMAKE_BUILD_TYPE=Release                       \
66      ..
68     make -j${jobs}
69     make -j${jobs} DESTDIR="$destdir" install
71     # Compress and link man pages (if needed)
72     if test -d "${destdir}/$mandir"
73     then
74         (
75             cd "${destdir}/$mandir"
76             find . -type f -exec lzip -9 '{}' +
77             find . -type l | while read -r file
78             do
79                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
80                 rm -- "$file"
81             done
82         )
83     fi