Commit dfaaab97 authored by vincowl's avatar vincowl Committed by GitHub

[filezilla] Update to 3.48.1 (#4116)

Co-authored-by: default avatarVincent GIRARD <vincent@heliosphere.fr>
parent 44bf1bbd
......@@ -3,21 +3,13 @@ require 'package'
class Filezilla < Package
description 'FileZilla Client is a free FTP solution.'
homepage 'https://filezilla-project.org/'
version '3.46.3'
source_url 'https://download.filezilla-project.org/client/FileZilla_3.46.3_src.tar.bz2'
source_sha256 'f1c5bff0a99c39447a5ea9fdfcc16cc408876ef52fa8d5e7bf041ea0717a7395'
version '3.48.1'
source_url 'https://download.filezilla-project.org/client/FileZilla_3.48.1_src.tar.bz2'
source_sha256 'abffd877ff9006e8e50ce4957393f0a27cc0a7360e626123ef15974eee13ef5d'
binary_url ({
aarch64: 'https://dl.bintray.com/chromebrew/chromebrew/filezilla-3.46.3-chromeos-armv7l.tar.xz',
armv7l: 'https://dl.bintray.com/chromebrew/chromebrew/filezilla-3.46.3-chromeos-armv7l.tar.xz',
i686: 'https://dl.bintray.com/chromebrew/chromebrew/filezilla-3.46.3-chromeos-i686.tar.xz',
x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/filezilla-3.46.3-chromeos-x86_64.tar.xz',
})
binary_sha256 ({
aarch64: '47a8469458b831385a5120538a967ffe947d4e072c9075f19d0c9f15e4a2ccab',
armv7l: '47a8469458b831385a5120538a967ffe947d4e072c9075f19d0c9f15e4a2ccab',
i686: '2c1aa841ff739162478e8bef80097229f1fe66437db2fd41f6f517070c35116f',
x86_64: '8f3c9199aa0dadec311daba0c0e1c0a06d407376a882da4e4468278b5d806b08',
})
depends_on 'dbus'
......@@ -31,15 +23,11 @@ class Filezilla < Package
depends_on 'sommelier'
def self.build
system './configure',
"--prefix=#{CREW_PREFIX}",
"--libdir=#{CREW_LIB_PREFIX}",
'--disable-maintainer-mode',
'--with-pugixml=builtin'
system "./configure #{CREW_OPTIONS} --disable-maintainer-mode --with-pugixml=builtin"
system 'make'
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
end
......@@ -3,31 +3,21 @@ require 'package'
class Libfilezilla < Package
description 'libfilezilla is a small and modern C++ library, offering some basic functionality to build high-performing, platform-independent programs.'
homepage 'https://lib.filezilla-project.org/'
version '0.19.3'
source_url 'https://download.filezilla-project.org/libfilezilla/libfilezilla-0.19.3.tar.bz2'
source_sha256 'a43d49f86d5550e9a81aee2394bac066333d5bb47943e92c629cb9d52037b43a'
version '0.22.0'
source_url 'https://download.filezilla-project.org/libfilezilla/libfilezilla-0.22.0.tar.bz2'
source_sha256 'c5f660c4b339ed6a9e89ec0bafd5d39ba53cb3a3b52051bc571bb74e03ef8f7a'
binary_url ({
aarch64: 'https://dl.bintray.com/chromebrew/chromebrew/libfilezilla-0.19.3-chromeos-armv7l.tar.xz',
armv7l: 'https://dl.bintray.com/chromebrew/chromebrew/libfilezilla-0.19.3-chromeos-armv7l.tar.xz',
i686: 'https://dl.bintray.com/chromebrew/chromebrew/libfilezilla-0.19.3-chromeos-i686.tar.xz',
x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/libfilezilla-0.19.3-chromeos-x86_64.tar.xz',
})
binary_sha256 ({
aarch64: '4dcaebe877dfcb68dc6dda313e7121c6c220979716eef419960e88529caf6eca',
armv7l: '4dcaebe877dfcb68dc6dda313e7121c6c220979716eef419960e88529caf6eca',
i686: '7e4e7f219a6447fcb7ca6ce3010fa560122853e0831de19b8d89c58afd9bfd30',
x86_64: 'cad527db909fae46126213f99de2ec8a1bff297be41068ebb133f61fbf7492e6',
})
def self.build
system './configure',
"--prefix=#{CREW_PREFIX}",
"--libdir=#{CREW_LIB_PREFIX}"
system "./configure #{CREW_OPTIONS}"
system 'make'
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment