wok view gnome-vfs/receipt @ rev 14254

Add kexec-tools
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 26 11:53:15 2013 +0100 (2013-03-26)
parents 02bbaa9d12ba
children 380ffe05937a
line source
1 # SliTaz package receipt.
3 PACKAGE="gnome-vfs"
4 VERSION="2.24.4"
5 CATEGORY="x-window"
6 SHORT_DESC="The GNOME Virtual File System libraries"
7 MAINTAINER="erjo@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.gnome.org"
10 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
12 DEPENDS="dbus dbus-glib GConf glib glibc-base libffi libgio libxml2 ORBit2 \
13 zlib"
14 BUILD_DEPENDS="gtk+-dev dbus-glib-dev GConf-dev bzip2-dev gnome-mime-data \
15 libxml2-dev zlib-dev intltool pkg-config"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc/gnome \
24 --libexecdir=/usr/lib/gnome-vfs-2.0 \
25 --disable-schemas-install \
26 $CONFIGURE_ARGS &&
27 make && make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share $fs/usr/lib
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 cp -a $install/usr/lib/gnome-vfs* $fs/usr/lib
37 cp -a $install/usr/share/dbus* $fs/usr/share
38 cp -a $install/etc /$fs
40 # Clean unwated files
41 cd $fs/usr/lib/gnome-vfs-2.0 ; find . -name "*.*a" -exec rm -f {} \;
42 rm -rf ./include
43 }