Port last filezilla to centos 7

Moderator: Project members

Post Reply
Message
Author
sauron-le-noir
500 Command not understood
Posts: 1
Joined: 2020-06-06 20:30
First name: Serge
Last name: Sterck

Port last filezilla to centos 7

#1 Post by sauron-le-noir » 2020-06-06 20:50

I have just port the last filezilla but is it me or the svn tag are not uptodate

llibfilezilla
https://svn.filezilla-project.org/svn/l ... illa/tags/ --> the last tag is 0.16.0
or the built 3.4.0 need Requested 'libfilezilla >= 0.22.0'
https://svn.filezilla-project.org/svn/FileZilla3/tags/ --> the last tag is 3.40.0
or the last version is 3.41.0

I try to automade the compiltion of filezilla based on the svn here is the script currently i'm obliged to download the source manualy
because the last tag is 0.16.0 and not >= 0.22

Code: Select all

prefix=~/build
mkdir -p $prefix/Filezilla3

export PATH="$prefix/Filezilla3/bin:$PATH"
export LD_LIBRARY_PATH="$prefix/Filezilla3/lib:$LD_LIBRARY_PATH"
export PKG_CONFIG_PATH="$prefix/Filezilla3/lib/pkgconfig:$PKG_CONFIG_PATH"
cd $prefix
svn co https://svn.filezilla-project.org/svn/libfilezilla/tags/0.16.0 libfilezilla
cd libfilezilla
autoreconf -i
./configure --prefix="$prefix/Filezilla3" --enable-shared --disable-static 
make && make install
is there another svn updated ?

User avatar
botg
Site Admin
Posts: 35492
Joined: 2004-02-23 20:49
First name: Tim
Last name: Kosse

Re: Port last filezilla to centos 7

#2 Post by botg » 2020-06-07 09:23


Post Reply