wok-undigest view libbonoboui/receipt @ rev 199

Rm perl-smtp-ssl, move to wok.
author Liu Peng <rocky@slitaz.org>
date Sun Jan 02 08:20:57 2011 +0000 (2011-01-02)
parents
children ea9cbfae3627
line source
1 # SliTaz package receipt.
3 PACKAGE="libbonoboui"
4 VERSION="2.24.2"
5 CATEGORY="x-window"
6 SHORT_DESC=""
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libgnome libgnomecanvas libglade"
9 BUILD_DEPENDS="libgnome-dev libgnomecanvas-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"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib $fs/usr/share
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
34 cp -a $_pkg/usr/lib/bonobo* $fs/usr/lib
35 cp -a $_pkg/usr/lib/libglade $fs/usr/lib
37 # remove archive lib
38 find $fs/usr/lib -name *.*a -exec rm -f {} \;
41 }