wok-undigest rev 7

Add gnome-vfs-monikers*
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Fri Mar 19 19:06:49 2010 +0100 (2010-03-19)
parents 5f0c5e04b9af
children b52346954889
files gnome-vfs-monikers-dev/receipt gnome-vfs-monikers/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/gnome-vfs-monikers-dev/receipt	Fri Mar 19 19:06:49 2010 +0100
     1.3 @@ -0,0 +1,24 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="gnome-vfs-monikers"
     1.7 +VERSION="2.15.3"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="GNOME Bonobo monikers dev files "
    1.10 +MAINTAINER="erjo@slitaz.org"
    1.11 +DEPENDS="gnome-vfs libbonobo"
    1.12 +BUILD_DEPENDS="gnome-vfs-dev libbonobo-dev"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.14 +WEB_SITE="http://www.gnome.org"
    1.15 +WANTED="gnome-vfs-monikers"
    1.16 +
    1.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.18 +genpkg_rules()
    1.19 +{
    1.20 +	mkdir -p $fs/usr
    1.21 +	cp -a $_pkg/usr/lib $fs/usr
    1.22 +	
    1.23 +	# Clean unwated files
    1.24 +	cd $fs/usr/lib ; find . -name "*.so*" -exec rm -f {} \;
    1.25 +		
    1.26 +}
    1.27 +
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/gnome-vfs-monikers/receipt	Fri Mar 19 19:06:49 2010 +0100
     2.3 @@ -0,0 +1,38 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="gnome-vfs-monikers"
     2.7 +VERSION="2.15.3"
     2.8 +CATEGORY="x-window"
     2.9 +SHORT_DESC="GNOME Bonobo monikers "
    2.10 +MAINTAINER="erjo@slitaz.org"
    2.11 +DEPENDS="gnome-vfs libbonobo"
    2.12 +BUILD_DEPENDS="gnome-vfs-dev libbonobo-dev"
    2.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.14 +WEB_SITE="http://www.gnome.org"
    2.15 +WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
    2.16 +
    2.17 +# Rules to configure and make the package.
    2.18 +compile_rules()
    2.19 +{
    2.20 +	cd $src
    2.21 +	./configure \
    2.22 +		--prefix=/usr \
    2.23 +		--infodir=/usr/share/info \
    2.24 +		--mandir=/usr/share/man \
    2.25 +		$CONFIGURE_ARGS &&
    2.26 +	make && make DESTDIR=$PWD/_pkg install
    2.27 +}
    2.28 +
    2.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.30 +genpkg_rules()
    2.31 +{
    2.32 +	mkdir -p $fs/usr/
    2.33 +	cp -a $_pkg/usr/lib $fs/usr
    2.34 +	
    2.35 +	# Clean unwated files
    2.36 +	cd $fs/usr/lib ; find . -name "*.*a" -exec rm -f {} \;
    2.37 +		
    2.38 +	# Strip all
    2.39 +	find . -name "*.so" -exec strip -s {} \;
    2.40 +}
    2.41 +