mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
15 lines
262 B
Ruby
15 lines
262 B
Ruby
require 'package'
|
|
|
|
class Curl < Package
|
|
description 'Command line tool and library for transferring data with URLs.'
|
|
homepage 'https://curl.se/'
|
|
@_ver = '7.82.0'
|
|
version @_ver
|
|
license 'curl'
|
|
compatibility 'all'
|
|
is_fake
|
|
|
|
depends_on 'libcurl'
|
|
|
|
end
|