recipes: xfce: moved to ../testing
[dragora.git] / testing / recipes / xfce / xfce4-session / recipe
blob333233ef708400b411167a697b9218b438a04db3
1 # Build recipe for xfce4-session.
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=xfce4-session
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/xfce4-session/${version%.*}/$tarname"
30 description="
31 Session manager for Xfce.
33 Its task is to save the state of your desktop and restore it during a
34 next startup.  You can create several different sessions and choose one
35 of them on startup.
38 homepage=http://xfce.org
39 license=GPLv2+
41 # Source documentation
42 docs="AUTHORS BUGS COPYING ChangeLog NEWS README TODO"
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     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
57      $configure_args \
58      --libdir=/usr/lib${libSuffix} \
59      --mandir=$mandir \
60      --enable-static=no \
61      --enable-shared=yes \
62      --enable-debug=no \
63      --disable-legacy-sm \
64      --disable-polkit \
65      --disable-upower \
66      --with-x \
67      --build="$(cc -dumpmachine)"
69     make -j${jobs} V=1
70     make -j${jobs} DESTDIR="$destdir" install-strip
72     # Include xinitrc file to start Xfce
74     mkdir -p "${destdir}/etc/X11/xinit"
75     cp -p "${worktree}/archive/xfce4-session/xinitrc-xfce" \
76           "${destdir}/etc/X11/xinit/"
77     chmod 644 "${destdir}/etc/X11/xinit/xinitrc-xfce"
79     touch "${destdir}/etc/X11/xinit/.graft-config"
81     lzip -9 "${destdir}/${mandir}"/man?/*.?
83     # Copy documentation
84     mkdir -p "${destdir}${docsdir}"
85     cp -p $docs "${destdir}${docsdir}"