recipes: tde/tqt3: preparing addition of TDE
[dragora.git] / recipes / xfce / xfwm4 / recipe
bloba6cf36de24306b088b645f748e4829e1d769d47b
1 # Build recipe for xfwm4.
3 # Copytight (C) 2018, MMPG <mmpg@vp.pl>
4 # Copytight (C) 2018-2019 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 program=xfwm4
19 version=4.14.0
20 release=1
22 # Set 'outdir' for a nice and well-organized output directory
23 outdir="${outdir}/${arch}/xfce"
25 tarname=${program}-${version}.tar.bz2
27 # Remote source(s)
28 fetch="http://archive.xfce.org/src/xfce/xfwm4/${version%.*}/$tarname"
30 description="
31 The window manager for Xfce environment.
33 It is designed to run with the rest of Xfce, but it also
34 makes a capable window manager for any X11 environment.
37 homepage=http://xfce.org
38 license=GPLv2+
40 # Source documentation
41 docs="AUTHORS COMPOSITOR COPYING ChangeLog NEWS README TODO"
42 docsdir="${docdir}/${program}-${version}"
44 build()
46     set -e
48     unpack "${tardir}/$tarname"
50     cd "$srcdir"
52     # Set sane permissions
53     chmod -R u+w,go-w,a+rX-s .
55     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
56      $configure_args \
57      --libdir=/usr/lib${libSuffix} \
58      --enable-static=no \
59      --enable-shared=yes \
60      --enable-debug=no \
61      --enable-startup-notification=yes \
62      --with-x \
63      --build="$(cc -dumpmachine)"
65     make -j${jobs} V=1
66     make -j${jobs} DESTDIR="$destdir" install-strip
68     # Copy documentation
69     mkdir -p "${destdir}${docsdir}"
70     cp -p $docs "${destdir}${docsdir}"