wok-6.x annotate xdg-utils/receipt @ rev 4718
pingus: fix build gcc4 and scons.
author | erjo@localhost |
---|---|
date | Tue Jan 05 13:23:23 2010 +0100 (2010-01-05) |
parents | |
children | 6ce2795cffec |
rev | line source |
---|---|
paul@3234 | 1 # SliTaz package receipt. |
paul@3234 | 2 |
paul@3234 | 3 PACKAGE="xdg-utils" |
paul@3234 | 4 VERSION="1.0.2" |
paul@3234 | 5 CATEGORY="development" |
paul@3234 | 6 SHORT_DESC="Assists desktop integration tasks." |
paul@3234 | 7 MAINTAINER="paul@slitaz.org" |
paul@3234 | 8 DEPENDS="" |
paul@3234 | 9 TARBALL="$PACKAGE-$VERSION.tgz" |
paul@3234 | 10 WEB_SITE="http://portland.freedesktop.org/wiki/" |
paul@3234 | 11 WGET_URL="http://portland.freedesktop.org/download/$TARBALL" |
paul@3234 | 12 |
paul@3234 | 13 # Rules to configure and make the package. |
paul@3234 | 14 compile_rules() |
paul@3234 | 15 { |
paul@3234 | 16 cd $src |
paul@3234 | 17 ./configure \ |
paul@3234 | 18 --prefix=/usr \ |
paul@3234 | 19 --infodir=/usr/share/info \ |
paul@3234 | 20 --mandir=/usr/share/man \ |
paul@3234 | 21 $CONFIGURE_ARGS && |
paul@3234 | 22 make && make DESTDIR=$PWD/_pkg install |
paul@3234 | 23 } |
paul@3234 | 24 |
paul@3234 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@3234 | 26 genpkg_rules() |
paul@3234 | 27 { |
paul@3234 | 28 mkdir -p $fs/usr |
paul@3234 | 29 cp -a $_pkg/usr/bin $fs/usr |
paul@3234 | 30 } |
paul@3234 | 31 |