Files
chromebrew/packages/libfilezilla.rb
vincowl 9c531e6da1 [filezilla] Update to 3.49.1 (#4212)
Co-authored-by: Vincent GIRARD <vincent@heliosphere.fr>
2020-08-15 11:18:34 -05:00

25 lines
686 B
Ruby

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.23.0'
compatibility 'all'
source_url 'https://download.filezilla-project.org/libfilezilla/libfilezilla-0.23.0.tar.bz2'
source_sha256 'adeac127fbd1714b22c828cdd27fc6c92e09fd1abcc96684bf30535fb8226852'
binary_url ({
})
binary_sha256 ({
})
def self.build
system "./configure #{CREW_OPTIONS}"
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
end