recipes: xfce: moved to ../testing
[dragora.git] / testing / recipes / xfce / thunar / recipe
blobcbf15d92959016d4990ca3321d10fabbde97e075
1 # Build recipe for Thunar.
3 # Copyright (C) 2017-2018, MMPG <mmpg@vp.pl>
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 program=Thunar
18 version=1.7.0
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/xfce"
24 pkgname=thunar
25 tarname=${program}-${version}.tar.bz2
27 # Remote source(s)
28 fetch=http://archive.xfce.org/src/xfce/thunar/1.7/$tarname
30 description="
31 Modern file manager for the Xfce Desktop Environment.
33 Thunar has been designed from the ground up to be fast and
34 easy-to-use.  Its user interface is clean and intuitive, and does not
35 include any confusing or useless options.
38 homepage=http://docs.xfce.org/xfce/thunar/start/
39 license="GPLv2 | LGPLv2.1"
41 # Source documentation
42 docs="AUTHORS COPYING COPYING.LIB ChangeLog FAQ HACKING NEWS README THANKS TODO"
43 docsdir="${docdir}/${program}-${version}"
45 build()
47     set -e
48     unpack "${tardir}/$tarname"
49     
50     cd "$srcdir"
52     # Set sane permissions
53     chmod -R u+w,go-w,a+rX-s .
54     
55     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
56     $configure_args \
57     --mandir=$mandir \
58     --infodir=$infodir \
59     --disable-debug \
60     --build="$(cc -dumpmachine)"        
61     
62     make -j${jobs}
63     make -j${jobs} DESTDIR="$destdir" install
64     
65     # Copy documentation
66     mkdir -p "${destdir}${docsdir}"
67     
68     for file in $docs
69     do
70         cp -p $file "${destdir}${docsdir}"
71     done