recipes: tde/tqt3: preparing addition of TDE
[dragora.git] / recipes / xfce / xfdesktop / recipe
blob84360cb908e267642e2b4798465a0deb87436d66
1 # Build recipe for xfdesktop.
3 # Copyright (C) 2018, MMPG <mmpg@vp.pl>
4 # Copyright (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=xfdesktop
19 version=4.14.1
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/xfdesktop/${version%.*}/$tarname"
30 description="
31 A desktop manager for the Xfce Desktop Environment.
33 Desktop in this respect means the root window.  The manager handles
34 tasks such as the background image and color, the root menu and
35 windowlist, minimized application icons, and file icons on the
36 desktop.
39 homepage=http://xfce.org
40 license=GPLv2+
42 # Source documentation
43 docs="AUTHORS COPYING ChangeLog NEWS README TODO"
44 docsdir="${docdir}/${program}-${version}"
46 build()
48     set -e
50     unpack "${tardir}/$tarname"
52     cd "$srcdir"
54     # Set sane permissions
55     chmod -R u+w,go-w,a+rX-s .
57     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
58      $configure_args \
59      --libdir=/usr/lib${libSuffix} \
60      --mandir=$mandir \
61      --enable-static=no \
62      --enable-shared=yes \
63      --enable-debug=no \
64      --enable-gio-unix=yes \
65      --enable-notifications=yes \
66      --disable-thunarx \
67      --with-file-manager-fallback=spacefm \
68      --with-x \
69      --build="$(cc -dumpmachine)"
71     make -j${jobs} V=1
72     make -j${jobs} DESTDIR="$destdir" install-strip
74     lzip -9 "${destdir}/${mandir}"/man?/*.?
76     # Copy documentation
77     mkdir -p "${destdir}${docsdir}"
78     cp -p $docs "${destdir}${docsdir}"