wok annotate libxfce4ui/receipt @ rev 10015
libxfce4ui: fix bdeps
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Thu May 19 10:07:23 2011 +0200 (2011-05-19) |
parents | f6da05ab6dbd |
children | 7a41942660df |
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 |
erjo@10015 | 12 DEPENDS="gtk+ libxfce4util xfconf startup-notification dbus-glib libglade util-linux-ng-uuid libxfce4ui" |
erjo@10015 | 13 BUILD_DEPENDS="gtk+-dev libxfce4util-dev xfconf-dev startup-notification-dev |
erjo@10015 | 14 libglade-dev xcb-util-dev util-linux-ng-uuid-dev intltool libxfce4ui-dev" |
erjo@8015 | 15 |
erjo@8015 | 16 # Rules to configure and make the package. |
erjo@8015 | 17 compile_rules() |
erjo@8015 | 18 { |
erjo@8015 | 19 cd $src |
erjo@8015 | 20 ./configure --prefix=/usr \ |
erjo@8015 | 21 --sysconfdir=/etc \ |
erjo@10015 | 22 --disable-debug $CONFIGURE_ARGS && |
erjo@8015 | 23 make && |
erjo@9888 | 24 make DESTDIR=$DESTDIR install |
erjo@8015 | 25 } |
erjo@8015 | 26 |
erjo@8015 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@8015 | 28 genpkg_rules() |
erjo@8015 | 29 { |
erjo@8015 | 30 mkdir -p $fs/usr/lib \ |
erjo@8015 | 31 $fs/usr/share/locale |
erjo@8015 | 32 |
erjo@8015 | 33 cp -a $_pkg/etc $fs/ |
erjo@8015 | 34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
erjo@8015 | 35 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale |
erjo@8015 | 36 } |
erjo@8015 | 37 |