123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- program=exo
- version=0.12.0
- release=1
- tarname=${program}-${version}.tar.bz2
- fetch=http://archive.xfce.org/src/xfce/exo/0.12/$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=https://xfce.org/projects/
- license="GPLv2 | LGPLv2"
- docs="COPYING COPYING.LIB HACKING NEWS README THANKS TODO"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- set -e
- unpack "${tardir}/$tarname"
-
- cd "$srcdir"
-
- ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
- $configure_args \
- --mandir=/usr/man \
- --infodir=/usr/info \
- --disable-static \
- --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
- }
|