123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- program=exo
- version=0.12.8
- release=1
- outdir="${outdir}/${arch}/xfce"
- tarname=${program}-${version}.tar.bz2
- fetch="http://archive.xfce.org/src/xfce/exo/${version%.*}/$tarname"
- description="
- An extension library to Xfce, developed by os-cillation.
- While Xfce comes with quite a few libraries that are targeted at
- desktop development, libexo is targeted at application development.
- It also has some helper applications that are used throughout the
- entire desktop.
- "
- homepage=http://xfce.org
- license="GPLv2+ | LGPLv2+"
- docs="COPYING* 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 \
- --libdir=/usr/lib${libSuffix} \
- --enable-static=no \
- --enable-shared=yes \
- --enable-debug=no \
- --with-x \
- --build="$(cc -dumpmachine)"
-
- make -j${jobs} V=1
- make -j${jobs} DESTDIR="$destdir" install-strip
-
-
- mkdir -p "${destdir}${docsdir}"
- cp -p $docs "${destdir}${docsdir}"/
- }
|