wok-undigest view libgnomeui/receipt @ rev 347

libgnomeui: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 15 16:50:17 2011 +0200 (2011-06-15)
parents 932621f407ce
children 4973374eb186
line source
1 # SliTaz package receipt.
3 PACKAGE="libgnomeui"
4 VERSION="2.24.5"
5 CATEGORY="x-window"
6 SHORT_DESC="This is the gui parts of what was previously gnome-libs"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libgnome libgnomecanvas libglade libbonoboui gnome-keyring"
9 BUILD_DEPENDS="libgnome-dev libgnomecanvas-dev gnome-keyring gnome-keyring-dev libbonoboui-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.gnome.org"
12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --libexecdir=/usr/lib/$PACKAGE \
21 $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib $fs/usr/share
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 cp -a $_pkg/usr/lib/libglade $fs/usr/lib
31 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
32 find $fs/usr/lib -name *.*a -exec rm -f {} \;
33 }