# HG changeset patch # User Eric Joseph-Alexandre # Date 1269022009 -3600 # Node ID afa2598b9661994a1e64dae946d69162653f7ef4 # Parent 5f0c5e04b9afd6063536aaf0044e9be30ff7fb49 Add gnome-vfs-monikers* diff -r 5f0c5e04b9af -r afa2598b9661 gnome-vfs-monikers-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnome-vfs-monikers-dev/receipt Fri Mar 19 19:06:49 2010 +0100 @@ -0,0 +1,24 @@ +# SliTaz package receipt. + +PACKAGE="gnome-vfs-monikers" +VERSION="2.15.3" +CATEGORY="development" +SHORT_DESC="GNOME Bonobo monikers dev files " +MAINTAINER="erjo@slitaz.org" +DEPENDS="gnome-vfs libbonobo" +BUILD_DEPENDS="gnome-vfs-dev libbonobo-dev" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://www.gnome.org" +WANTED="gnome-vfs-monikers" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/lib $fs/usr + + # Clean unwated files + cd $fs/usr/lib ; find . -name "*.so*" -exec rm -f {} \; + +} + diff -r 5f0c5e04b9af -r afa2598b9661 gnome-vfs-monikers/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnome-vfs-monikers/receipt Fri Mar 19 19:06:49 2010 +0100 @@ -0,0 +1,38 @@ +# SliTaz package receipt. + +PACKAGE="gnome-vfs-monikers" +VERSION="2.15.3" +CATEGORY="x-window" +SHORT_DESC="GNOME Bonobo monikers " +MAINTAINER="erjo@slitaz.org" +DEPENDS="gnome-vfs libbonobo" +BUILD_DEPENDS="gnome-vfs-dev libbonobo-dev" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://www.gnome.org" +WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/ + cp -a $_pkg/usr/lib $fs/usr + + # Clean unwated files + cd $fs/usr/lib ; find . -name "*.*a" -exec rm -f {} \; + + # Strip all + find . -name "*.so" -exec strip -s {} \; +} +