wok annotate libxfce4ui/receipt @ rev 11400

Fix: typo in linux && linux-libre receipts (thanks to godane)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sun Dec 11 02:12:34 2011 +0100 (2011-12-11)
parents 340979732680
children 73641efed1cc
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
pankso@10395 12 DEPENDS="gtk+ libxfce4util xfconf startup-notification dbus-glib libglade \
pankso@10395 13 util-linux-ng-uuid"
erjo@10015 14 BUILD_DEPENDS="gtk+-dev libxfce4util-dev xfconf-dev startup-notification-dev
pankso@10395 15 libglade-dev xcb-util-dev util-linux-ng-uuid-dev intltool"
erjo@8015 16
erjo@8015 17 # Rules to configure and make the package.
erjo@8015 18 compile_rules()
erjo@8015 19 {
erjo@8015 20 cd $src
erjo@8015 21 ./configure --prefix=/usr \
erjo@8015 22 --sysconfdir=/etc \
erjo@10015 23 --disable-debug $CONFIGURE_ARGS &&
erjo@8015 24 make &&
erjo@9888 25 make DESTDIR=$DESTDIR 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 {
erjo@8015 31 mkdir -p $fs/usr/lib \
erjo@8015 32 $fs/usr/share/locale
erjo@8015 33
erjo@8015 34 cp -a $_pkg/etc $fs/
erjo@8015 35 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@8015 36 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
erjo@8015 37 }
erjo@8015 38