mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Ncftp 3.2.6 => 3.3.0 * Add built packages for linux/386 to update-ncftp * Add built packages for linux/amd64 to update-ncftp * Add built packages for linux/arm/v7 to update-ncftp --------- Co-authored-by: Ed Reel <edreel@gmail.com> Co-authored-by: uberhacker <uberhacker@users.noreply.github.com>
22 lines
881 B
Ruby
22 lines
881 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Ncftp < Autotools
|
|
description 'NcFTP Client (also known as just NcFTP) is a set of FREE application programs implementing the File Transfer Protocol (FTP).'
|
|
homepage 'https://ncftp.com/ncftp/'
|
|
version '3.3.0'
|
|
license 'Clarified-Artistic'
|
|
compatibility 'all'
|
|
source_url "https://www.ncftp.com/public_ftp/ncftp/ncftp-#{version}-src.tar.gz"
|
|
source_sha256 '38a87edd210ee662b7781a0297b0925468489ad57d867b6fadf0491d017f4167'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '5e702d967660d6234926a392b70cd7976574c11888ec429850f65eaf349d2c79',
|
|
armv7l: '5e702d967660d6234926a392b70cd7976574c11888ec429850f65eaf349d2c79',
|
|
i686: 'dca002929dba21337af416bef443cb183e4cdc914a7b00af1a098594d585b193',
|
|
x86_64: '9bf1f556ff65f683ff892ec8d7e19841fc1f95c5750fd993b68394751652eff2'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
end
|