mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
25 lines
686 B
Ruby
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
|