wok rev 13296

Add dukto
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 28 13:52:43 2012 +0200 (2012-08-28)
parents ee8093de2126
children 7982b75e7995
files dukto/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dukto/receipt	Tue Aug 28 13:52:43 2012 +0200
     1.3 @@ -0,0 +1,31 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="dukto"
     1.7 +VERSION="108"
     1.8 +CATEGORY="network"
     1.9 +SHORT_DESC="A simple, fast and multi-platform file transfer tool for LAN users."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +WEB_SITE="http://code.google.com/p/$PACKAGE/"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.13 +WGET_URL="subversion|http://$PACKAGE.googlecode.com/svn/trunk/"
    1.14 +
    1.15 +BUILD_DEPENDS="subversion Qt4-dev qmake"
    1.16 +DEPENDS="gcc-lib-base libQtDeclarative"
    1.17 +
    1.18 +MISSING_DEPENDS="libQtDeclarative.so.4 (debian=libqt4-declarative)"
    1.19 +
    1.20 +# Rules to configure and make the package.
    1.21 +compile_rules()
    1.22 +{
    1.23 +	cd $src
    1.24 +	qmake PREFIX="/usr/" &&
    1.25 +	make $MAKEFLAGS &&
    1.26 +	make INSTALL_ROOT=$DESTDIR install
    1.27 +}
    1.28 +
    1.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 +genpkg_rules()
    1.31 +{
    1.32 +	mkdir -p $fs/usr/bin
    1.33 +	cp $install/usr/bin/dukto $fs/usr/bin
    1.34 +}