wok rev 38

Add : gnome-icon-theme + icon-naming-utils
author Christophe Lincoln <pankso@slitaz.org>
date Tue Dec 18 14:11:08 2007 +0100 (2007-12-18)
parents 5fabfae1758c
children b5491484fd8d
files gnome-icon-theme/receipt icon-naming-utils/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/gnome-icon-theme/receipt	Tue Dec 18 14:11:08 2007 +0100
     1.3 @@ -0,0 +1,29 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="gnome-icon-theme"
     1.7 +VERSION="2.18.0"
     1.8 +CATEGORY="extra"
     1.9 +SHORT_DESC="Default GNOME icon theme."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.12 +WEB_SITE="http://www.gnome.org/"
    1.13 +WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/2.18/$TARBALL"
    1.14 +
    1.15 +# Rules to configure and make the package.
    1.16 +compile_rules()
    1.17 +{
    1.18 +	cd $src
    1.19 +	./configure --prefix=/usr
    1.20 +	make
    1.21 +	make DESTDIR=$PWD/_pkg install
    1.22 +}
    1.23 +
    1.24 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.25 +genpkg_rules()
    1.26 +{
    1.27 +	mkdir -p $fs/usr/share $fs/usr/lib
    1.28 +	cp -a $_pkg/usr/share/icons $fs/usr/share
    1.29 +	# pkgconfig in /usr/lib
    1.30 +	cp -a $_pkg/usr/share/pkgconfig $fs/usr/lib
    1.31 +}
    1.32 +
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/icon-naming-utils/receipt	Tue Dec 18 14:11:08 2007 +0100
     2.3 @@ -0,0 +1,38 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="icon-naming-utils"
     2.7 +VERSION="0.8.2"
     2.8 +CATEGORY="extra"
     2.9 +SHORT_DESC="Perl script used for desktop icon compatibility"
    2.10 +MAINTAINER="pankso@slitaz.org"
    2.11 +DEPENDS="perl perl-xml-simple"
    2.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.13 +WEB_SITE="http://tango.freedesktop.org/"
    2.14 +WGET_URL=" http://tango.freedesktop.org/releases/$TARBALL"
    2.15 +
    2.16 +# Rules to configure and make the package.
    2.17 +compile_rules()
    2.18 +{
    2.19 +	cd $src
    2.20 +	./configure \
    2.21 +		--prefix=/usr \
    2.22 +		--libexecdir=/usr/lib/icon-naming-utils \
    2.23 +		$CONFIGURE_ARGS
    2.24 +	make
    2.25 +	make DESTDIR=$PWD/_pkg install
    2.26 +}
    2.27 +
    2.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.29 +genpkg_rules()
    2.30 +{
    2.31 +	mkdir -p $fs/usr/share
    2.32 +	cp -a $_pkg/usr/lib $fs/usr
    2.33 +	cp -a $_pkg/usr/share/dtds $fs/usr/share
    2.34 +	cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
    2.35 +	
    2.36 +	chmod +x $fs/usr/lib/$PACKAGE/*
    2.37 +	
    2.38 +	# For one file we are not going to build a -dev pkg
    2.39 +	cp -a $_pkg/usr/share/pkgconfig $fs/usr/lib
    2.40 +}
    2.41 +