recipes: optimize lzlib and plzip
[dragora.git] / recipes / x-apps / connman-gtk / recipe
blobdc073c2d3e616447d14b8eff9af02fac2dbfe47a
1 # Build recipe for connman-gtk.
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=connman-gtk
18 version=20180626_b72c6ab
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/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 A GTK GUI for ConnMan.
35 This package requires conmman.
38 homepage=http://github.com/jgke/connman-gtk
39 license=GPLv2+
41 # Source documentation
42 docs="CHANGELOG.md LICENSE README.md"
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 -p build
57     cd build
59     # TODO: openconnect should be added.
61     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
62     meson setup $configure_args \
63      --libdir /usr/lib${libSuffix} \
64      --buildtype=release \
65      --strip \
66      -Duse_openconnect=no \
67      ..
69     ninja
70     DESTDIR="$destdir" ninja install
72     # Compress and link man pages (if needed)
73     if test -d "${destdir}/$mandir"
74     then
75         (
76             cd "${destdir}/$mandir"
77             find . -type f -exec lzip -9 '{}' +
78             find . -type l | while read -r file
79             do
80                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
81                 rm -- "$file"
82             done
83         )
84     fi
86     cd ..
88     # Copy documentation
89     mkdir -p "${destdir}${docsdir}"
90     cp -p $docs "${destdir}${docsdir}"