# HG changeset patch # User Eric Joseph-Alexandre # Date 1218490779 -7200 # Node ID 21650839693f6530ef08c7323a6866504601fab7 # Parent a5ba7645753a8be01e1de4571c1fc601c4adec30 Add: wxdfast, Fast downloader. diff -r a5ba7645753a -r 21650839693f wxdfast/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wxdfast/receipt Mon Aug 11 23:39:39 2008 +0200 @@ -0,0 +1,39 @@ +# SliTaz package receipt. + +PACKAGE="wxdfast" +VERSION="0.6.0" +CATEGORY="networking" +SHORT_DESC="Download Manager." +MAINTAINER="erjo@slitaz.org" +DEPENDS="wxWidgets" +BUILD_DEPENDS="wxWidgets-dev" +TARBALL="${PACKAGE}_${VERSION}.tar.gz" +WEB_SITE="http://dfast.sourceforge.net/index.html" +WGET_URL="http://heanet.dl.sourceforge.net/sourceforge/dfast/$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 \ + $fs/usr/share \ + $fs/usr/share/locale + + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/share/wxdfast $fs/usr/share + cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale + cp -a $_pkg/usr/share/pixmaps $fs/usr/share + cp -a $_pkg/usr/share/applications $fs/usr/share + +} +