wok rev 1238
Add: wxdfast, Fast downloader.
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Mon Aug 11 23:39:39 2008 +0200 (2008-08-11) |
parents | a5ba7645753a |
children | 77b10a8a2b03 |
files | wxdfast/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/wxdfast/receipt Mon Aug 11 23:39:39 2008 +0200 1.3 @@ -0,0 +1,39 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="wxdfast" 1.7 +VERSION="0.6.0" 1.8 +CATEGORY="networking" 1.9 +SHORT_DESC="Download Manager." 1.10 +MAINTAINER="erjo@slitaz.org" 1.11 +DEPENDS="wxWidgets" 1.12 +BUILD_DEPENDS="wxWidgets-dev" 1.13 +TARBALL="${PACKAGE}_${VERSION}.tar.gz" 1.14 +WEB_SITE="http://dfast.sourceforge.net/index.html" 1.15 +WGET_URL="http://heanet.dl.sourceforge.net/sourceforge/dfast/$TARBALL" 1.16 + 1.17 +# Rules to configure and make the package. 1.18 +compile_rules() 1.19 +{ 1.20 + 1.21 + cd $src 1.22 + ./configure --prefix=/usr --infodir=/usr/share/info \ 1.23 + --mandir=/usr/share/man $CONFIGURE_ARGS 1.24 + make 1.25 + make DESTDIR=$PWD/_pkg install 1.26 +} 1.27 + 1.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.29 +genpkg_rules() 1.30 +{ 1.31 + mkdir -p $fs/usr \ 1.32 + $fs/usr/share \ 1.33 + $fs/usr/share/locale 1.34 + 1.35 + cp -a $_pkg/usr/bin $fs/usr 1.36 + cp -a $_pkg/usr/share/wxdfast $fs/usr/share 1.37 + cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale 1.38 + cp -a $_pkg/usr/share/pixmaps $fs/usr/share 1.39 + cp -a $_pkg/usr/share/applications $fs/usr/share 1.40 + 1.41 +} 1.42 +