# HG changeset patch # User Paul Issott # Date 1243625774 0 # Node ID 0f4e433412b33ae1e9a54da403bd2ac3fad9a6f3 # Parent 906386ad33be6619860ba136871ae4c40fb4e4ee Add: xdg-utils diff -r 906386ad33be -r 0f4e433412b3 xdg-utils/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xdg-utils/receipt Fri May 29 19:36:14 2009 +0000 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="xdg-utils" +VERSION="1.0.2" +CATEGORY="development" +SHORT_DESC="Assists desktop integration tasks." +MAINTAINER="paul@slitaz.org" +DEPENDS="" +TARBALL="$PACKAGE-$VERSION.tgz" +WEB_SITE="http://portland.freedesktop.org/wiki/" +WGET_URL="http://portland.freedesktop.org/download/$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/bin $fs/usr +} +