recipes: xfce/exo: upgraded to version 0.12.4
[dragora.git] / recipes / xfce / exo / recipe
blob89a8703007410f2c0e7a9e59ce5342e2afd728eb
1 # Build recipe for exo.
3 # Copyright (C) 2017-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=exo
19 version=0.12.4
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/exo/0.12/$tarname
30 description="
31 An extension library to Xfce, developed by os-cillation.
33 While Xfce comes with quite a few libraries that are targeted at
34 desktop development, libexo is targeted at application development.
36 It also has some helper applications that are used throughout the
37 entire desktop.
40 homepage=http://xfce.org
41 license="GPLv2+ | LGPLv2+"
43 # Source documentation
44 docs="COPYING* HACKING NEWS README THANKS TODO"
45 docsdir="${docdir}/${program}-${version}"
47 build()
49     set -e
51     unpack "${tardir}/$tarname"
52     
53     cd "$srcdir"
55     # Set sane permissions
56     chmod -R u+w,go-w,a+rX-s .
57     
58     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
59     $configure_args \
60     --libdir=/usr/lib${libSuffix} \
61     --disable-linker-opts \
62     --enable-static=no \
63     --enable-shared=yes \
64     --enable-debug=no \
65     --with-x \
66     --build="$(cc -dumpmachine)"
67     
68     make -j${jobs} V=1
69     make -j${jobs} DESTDIR="$destdir" install-strip
70     
71     # Copy documentation
72     mkdir -p "${destdir}${docsdir}"
73     cp -p $docs "${destdir}${docsdir}"/