recipes: tde/tqt3: preparing addition of TDE
[dragora.git] / recipes / xfce / orage / recipe
blob35682e487690b703057094d8ed0a900228b01471
1 # Build recipe for orage.
3 # Copyright (C) 2018, MMPG <mmpg@vp.pl>
4 # Copyright (C) 2018 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=orage
19 version=4.12.1
20 release=2
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/apps/orage/4.12/$tarname
30 description="
31 A simple calendar application with reminders.
33 This is mainly used on the Xfce environment.
36 homepage=http://xfce.org/projects/
37 license=GPLv2+
39 # Source documentation
40 docs="AUTHORS COPYING NEWS README TODO"
41 docsdir="${docdir}/${program}-${version}"
43 build()
45     set -e
47     unpack "${tardir}/$tarname"
49     cd "$srcdir"
51     # Set sane permissions
52     chmod -R u+w,go-w,a+rX-s .
54     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
55      $configure_args \
56      --libdir=/usr/lib${libSuffix} \
57      --mandir=$mandir \
58      --enable-static=no \
59      --enable-shared=yes \
60      --enable-debug=no \
61      --enable-libxfce4panel=yes \
62      --enable-libical=no \
63      --enable-dbus=yes \
64      --enable-libnotify=yes \
65      --enable-archive=yes \
66      --enable-reentrant \
67      --enable-final \
68      --with-locales-dir=/usr/lib${libSuffix}/locale \
69      --build="$(cc -dumpmachine)"
71     make -j${jobs} V=1
72     make -j${jobs} DESTDIR="$destdir" install-strip
74     # Move locale dir to the corresponding location
76     if test -d "${destdir}/usr/lib/locale"
77     then
78         mkdir -p "${destdir}/usr/lib${libSuffix}"
79         mv "${destdir}/usr/lib/locale" "${destdir}/usr/lib${libSuffix}"
80     fi
81     rmdir "${destdir}/usr/lib"
83     lzip -9 "${destdir}/${mandir}"/man?/*.?
85     # Copy documentation
86     mkdir -p "${destdir}${docsdir}"
87     cp -p $docs "${destdir}${docsdir}"