wok view libbonoboui/receipt @ rev 14714

lib[a-n]*: add LICENSE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 11 10:41:23 2013 +0200 (2013-06-11)
parents 73641efed1cc
children 86790a278e70
line source
1 # SliTaz package receipt.
3 PACKAGE="libbonoboui"
4 VERSION="2.24.3"
5 CATEGORY="x-window"
6 SHORT_DESC="The libbonoboui package contains libbonoboui libraries."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.gnome.org/"
11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="glib gtk+ libgnome libgnomecanvas libglade GConf alsa-lib popt \
14 libbonobo"
15 BUILD_DEPENDS="glib-dev gtk+-dev libgnome-dev libgnomecanvas-dev libglade-dev \
16 GConf-dev alsa-lib-dev popt-dev libbonobo-dev util-linux-uuid-dev intltool \
17 dbus-glib-dev audiofile esound libffi"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 ./configure $CONFIGURE_ARGS \
24 --sysconfdir=/etc/gnome \
25 --libexecdir=/usr/lib/bonobo &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 mkdir -p $fs/usr/share
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 cp -a $install/usr/lib/bonobo* $fs/usr/lib
37 cp -a $install/usr/lib/libglade $fs/usr/lib
38 cp -a $install/usr/share/applications $fs/usr/share
39 cp -a $install/usr/share/gnome-2.0 $fs/usr/share
41 # remove archive lib
42 find $fs/usr/lib -name "*.*a" -exec rm -f {} \;
43 }