wok annotate libxfce4ui/receipt @ rev 14130

move xfconf to libxfconf (xfce itself use this name), recook libxfce4ui (depend on libxfconf)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Feb 28 10:46:10 2013 +0000 (2013-02-28)
parents 73641efed1cc
children 6eff489aa802
rev   line source
erjo@8015 1 # SliTaz package receipt.
erjo@8015 2
erjo@8015 3 PACKAGE="libxfce4ui"
erjo@8015 4 VERSION="4.8.0"
erjo@8015 5 CATEGORY="x-window"
erjo@8015 6 SHORT_DESC="Xfce Gtk Widget library"
erjo@8015 7 MAINTAINER="erjo@slitaz.org"
erjo@8015 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@8015 9 WEB_SITE="http://www.xfce.org"
erjo@8015 10 WGET_URL="http://archive.xfce.org/xfce/${VERSION%.*}/src/$TARBALL"
erjo@8015 11
al@14130 12 DEPENDS="gtk+ libxfce4util libxfconf startup-notification dbus-glib libglade \
pankso@12481 13 util-linux-uuid"
al@14130 14 BUILD_DEPENDS="gtk+-dev libxfce4util-dev libxfconf-dev \
al@14130 15 startup-notification-dev libglade-dev xcb-util-dev util-linux-uuid-dev intltool"
erjo@8015 16
erjo@8015 17 # Rules to configure and make the package.
erjo@8015 18 compile_rules()
erjo@8015 19 {
al@14130 20 ./configure \
erjo@8015 21 --sysconfdir=/etc \
al@14130 22 --disable-debug \
al@14130 23 $CONFIGURE_ARGS &&
erjo@8015 24 make &&
al@14130 25 make DESTDIR=$install install
erjo@8015 26 }
erjo@8015 27
erjo@8015 28 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@8015 29 genpkg_rules()
erjo@8015 30 {
al@14130 31 mkdir -p $fs/usr/lib
al@14130 32 cp -a $install/etc $fs/
al@14130 33 cp -a $install/usr/lib/*.so* $fs/usr/lib
erjo@8015 34 }
erjo@8015 35