wok view dukto/receipt @ rev 21549

Add LXSession 0.4.6.* as lxsession046 (latest LXSession 0.4.* is 0.4.9.* and it don't compile anyway due to the old libgee; and latest LXSession 0.5.* (just lxsession) has the major drawbacks)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue May 07 11:25:44 2019 +0300 (2019-05-07)
parents 6e8b1bcb30e2
children 079887dee9fb
line source
1 # SliTaz package receipt.
3 PACKAGE="dukto"
4 VERSION="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 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 qmake PREFIX="/usr/" &&
21 make $MAKEFLAGS &&
22 make INSTALL_ROOT=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin
29 cp -a $install/* $fs/
30 ln -s /opt/dukto/bin/dukto $fs/usr/bin
31 }