wok view filezilla/receipt @ rev 22681

elilo: race condition
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jan 18 18:53:45 2020 +0100 (2020-01-18)
parents d37d15244372
children e985517d6dc7
line source
1 # SliTaz package receipt.
3 PACKAGE="filezilla"
4 VERSION="3.7.3"
5 CATEGORY="network"
6 SHORT_DESC="FTP Client"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 SOURCE="FileZilla"
10 TARBALL="${SOURCE}_${VERSION}_src.tar.bz2"
11 WEB_SITE="https://filezilla-project.org/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="ftp client"
15 DEPENDS="wxWidgets28 gnutls libidn xorg-libXxf86vm libtasn1 sqlite"
16 BUILD_DEPENDS="xdg-utils gettext wxWidgets28-dev gnutls-dev libidn-dev \
17 sqlite-dev libgnutls"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --prefix=/usr \
24 --infodir=/usr/share/info \
25 --mandir=/usr/share/man \
26 --with-tinyxml=builtin \
27 --without-dbus \
28 $CONFIGURE_ARGS &&
29 make && make DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/share
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/share/filezilla $fs/usr/share
39 rm -rf $fs/usr/share/fileszilla/docs
40 }