wok annotate libxfcegui4/receipt @ rev 16329

ARM: add xorg-xprop - Used in the new SliTaz Tiny/Touch Screen (sts) desktop
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 10 19:50:37 2014 +0200 (2014-04-10)
parents 6eff489aa802
children a5a22b5fb904
rev   line source
erjo@2076 1 # SliTaz package receipt.
erjo@2076 2
erjo@2076 3 PACKAGE="libxfcegui4"
pascal@15334 4 VERSION="4.10.0"
erjo@2076 5 CATEGORY="x-window"
erjo@2076 6 SHORT_DESC="Xfce Gtk Widget library"
erjo@2076 7 MAINTAINER="erjo@slitaz.org"
pascal@14718 8 LICENSE="GPL2"
pascal@14718 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@14718 10 WEB_SITE="http://www.xfce.org"
pascal@14718 11 WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
pascal@14718 12
pascal@5003 13 DEPENDS="gtk+ libxfce4util xfconf startup-notification dbus-glib libglade"
erjo@5829 14 BUILD_DEPENDS="gtk+-dev libxfce4util-dev xfconf-dev startup-notification-dev
pankso@12481 15 libglade-dev xcb-util-dev intltool util-linux-uuid-dev"
erjo@2076 16
erjo@2076 17 # Rules to configure and make the package.
erjo@2076 18 compile_rules()
erjo@2076 19 {
erjo@2076 20 cd $src
erjo@2076 21 ./configure --prefix=/usr \
erjo@2076 22 --infodir=/usr/share/info \
slaxemulator@8051 23 --mandir=/usr/share/man \
slaxemulator@8051 24 --disable-static \
slaxemulator@8051 25 --disable-debug \
slaxemulator@8051 26 $CONFIGURE_ARGS &&
pascal@5003 27 make &&
pascal@14718 28 make DESTDIR=$DESTDIR install
erjo@2076 29 }
erjo@2076 30
erjo@2076 31 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@2076 32 genpkg_rules()
erjo@2076 33 {
erjo@2076 34
erjo@2076 35 mkdir -p $fs/usr/lib \
erjo@2076 36 $fs/usr/share/locale
erjo@2076 37
pascal@14718 38 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@14718 39 cp -a $install/usr/lib/libglade $fs/usr/lib
pascal@14718 40 cp -a $install/usr/share/locale/fr $fs/usr/share/locale
pascal@14718 41 cp -a $install/usr/share/icons $fs/usr/share
erjo@2076 42
erjo@2076 43 # Remove SVG icons
erjo@2076 44 rm -rf $fs/usr/share/icons/hicolor/scalable
erjo@2076 45
erjo@2076 46 }
erjo@2076 47