wok view dukto/receipt @ rev 25457

Normazile https://sourceforge.net/projects web_sites
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 23 08:28:09 2022 +0000 (19 months ago)
parents bfabe25c21ff
children 69e1e705f038
line source
1 # SliTaz package receipt.
3 PACKAGE="dukto"
4 VERSION="4.9.8.0_108"
5 CATEGORY="network"
6 SHORT_DESC="A simple, fast and multi-platform file transfer tool for LAN users."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://sourceforge.net/projects/dukto"
10 TARBALL="$PACKAGE-${VERSION#*_}.tar.bz2"
11 WGET_URL="subversion|http://$PACKAGE.googlecode.com/svn/trunk/"
13 BUILD_DEPENDS="subversion Qt4-dev qmake libQtDeclarative"
14 DEPENDS="gcc-lib-base libQtDeclarative"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - https://sourceforge.net/projects/dukto/files/ 2>/dev/null | \
20 sed '/scope="row/!d;/dukto-/!d;s|.*/dukto-||;s|.[a-z].*||;s|-|.|g;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 cd $src
27 qmake PREFIX="/usr/" &&
28 make $MAKEFLAGS &&
29 make INSTALL_ROOT=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/bin
36 cp -a $install/* $fs/
37 ln -s /opt/dukto/bin/dukto $fs/usr/bin
38 }