# HG changeset patch # User Christophe Lincoln # Date 1197983468 -3600 # Node ID b4413bf9aece00fdda51f4692f8f4288a56b738e # Parent 5fabfae1758cc797db24ae157b9ea7e2531da6a7 Add : gnome-icon-theme + icon-naming-utils diff -r 5fabfae1758c -r b4413bf9aece gnome-icon-theme/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnome-icon-theme/receipt Tue Dec 18 14:11:08 2007 +0100 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="gnome-icon-theme" +VERSION="2.18.0" +CATEGORY="extra" +SHORT_DESC="Default GNOME icon theme." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.gnome.org/" +WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/2.18/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share $fs/usr/lib + cp -a $_pkg/usr/share/icons $fs/usr/share + # pkgconfig in /usr/lib + cp -a $_pkg/usr/share/pkgconfig $fs/usr/lib +} + diff -r 5fabfae1758c -r b4413bf9aece icon-naming-utils/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/icon-naming-utils/receipt Tue Dec 18 14:11:08 2007 +0100 @@ -0,0 +1,38 @@ +# SliTaz package receipt. + +PACKAGE="icon-naming-utils" +VERSION="0.8.2" +CATEGORY="extra" +SHORT_DESC="Perl script used for desktop icon compatibility" +MAINTAINER="pankso@slitaz.org" +DEPENDS="perl perl-xml-simple" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://tango.freedesktop.org/" +WGET_URL=" http://tango.freedesktop.org/releases/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --libexecdir=/usr/lib/icon-naming-utils \ + $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share + cp -a $_pkg/usr/lib $fs/usr + cp -a $_pkg/usr/share/dtds $fs/usr/share + cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share + + chmod +x $fs/usr/lib/$PACKAGE/* + + # For one file we are not going to build a -dev pkg + cp -a $_pkg/usr/share/pkgconfig $fs/usr/lib +} +