1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- program=Thunar
- version=1.7.0
- release=1
- outdir="${outdir}/${arch}/xfce"
- pkgname=thunar
- tarname=${program}-${version}.tar.bz2
- fetch=http://archive.xfce.org/src/xfce/thunar/1.7/$tarname
- description="
- Modern file manager for the Xfce Desktop Environment.
- Thunar has been designed from the ground up to be fast and
- easy-to-use. Its user interface is clean and intuitive, and does not
- include any confusing or useless options.
- "
- homepage=http://docs.xfce.org/xfce/thunar/start/
- license="GPLv2 | LGPLv2.1"
- docs="AUTHORS COPYING COPYING.LIB ChangeLog FAQ HACKING NEWS README THANKS TODO"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- set -e
- unpack "${tardir}/$tarname"
-
- cd "$srcdir"
-
- chmod -R u+w,go-w,a+rX-s .
-
- ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
- $configure_args \
- --mandir=$mandir \
- --infodir=$infodir \
- --disable-debug \
- --build="$(cc -dumpmachine)"
-
- make -j${jobs}
- make -j${jobs} DESTDIR="$destdir" install
-
-
- mkdir -p "${destdir}${docsdir}"
-
- for file in $docs
- do
- cp -p $file "${destdir}${docsdir}"
- done
- }
|