wok annotate libxfce4ui/receipt @ rev 15004

Add some LGPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 22:18:41 2013 +0000 (2013-08-10)
parents 0de5b7a560de
children 6dc104fddf08
rev   line source
erjo@8015 1 # SliTaz package receipt.
erjo@8015 2
erjo@8015 3 PACKAGE="libxfce4ui"
erjo@14822 4 VERSION="4.10.0"
erjo@8015 5 CATEGORY="x-window"
erjo@8015 6 SHORT_DESC="Xfce Gtk Widget library"
erjo@8015 7 MAINTAINER="erjo@slitaz.org"
pascal@15004 8 LICENSE="LGPL2"
erjo@8015 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@8015 10 WEB_SITE="http://www.xfce.org"
erjo@8015 11 WGET_URL="http://archive.xfce.org/xfce/${VERSION%.*}/src/$TARBALL"
erjo@8015 12
al@14130 13 DEPENDS="gtk+ libxfce4util libxfconf startup-notification dbus-glib libglade \
pankso@12481 14 util-linux-uuid"
al@14130 15 BUILD_DEPENDS="gtk+-dev libxfce4util-dev libxfconf-dev \
al@14130 16 startup-notification-dev libglade-dev xcb-util-dev util-linux-uuid-dev intltool"
erjo@8015 17
erjo@8015 18 # Rules to configure and make the package.
erjo@8015 19 compile_rules()
erjo@8015 20 {
al@14130 21 ./configure \
erjo@8015 22 --sysconfdir=/etc \
al@14130 23 --disable-debug \
al@14130 24 $CONFIGURE_ARGS &&
erjo@8015 25 make &&
al@14130 26 make DESTDIR=$install install
erjo@8015 27 }
erjo@8015 28
erjo@8015 29 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@8015 30 genpkg_rules()
erjo@8015 31 {
al@14130 32 mkdir -p $fs/usr/lib
al@14130 33 cp -a $install/etc $fs/
al@14130 34 cp -a $install/usr/lib/*.so* $fs/usr/lib
erjo@8015 35 }
erjo@8015 36