mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* ruby_nokogiri -> 1.19.2-ruby4.0 in updater-ruby_nokogiri-1.19.2-ruby4.0 * updater-ruby_nokogiri-1.19.2-ruby4.0: Package File Update Run on linux/386 container. * updater-ruby_nokogiri-1.19.2-ruby4.0: Package File Update Run on linux/amd64 container. * updater-ruby_nokogiri-1.19.2-ruby4.0: Package File Update Run on linux/arm/v7 container. * Update ruby_nokogiri.rb --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: Satadru Pramanik, DO, MPH, MEng <satadru@gmail.com>
29 lines
894 B
Ruby
29 lines
894 B
Ruby
require 'buildsystems/ruby'
|
|
|
|
class Ruby_nokogiri < RUBY
|
|
description 'Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby.'
|
|
homepage 'https://nokogiri.org'
|
|
version "1.19.2-#{CREW_RUBY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'gem'
|
|
|
|
binary_sha256({
|
|
aarch64: '6ec5cb6c22021e4478d256d83a3f16acd766e8c92fc789672207e14bd8a89646',
|
|
armv7l: '6ec5cb6c22021e4478d256d83a3f16acd766e8c92fc789672207e14bd8a89646',
|
|
i686: '7e4d1aacc6f2a62373d95695fc8765275447f3e9c2ff09cad3e0ea8dbc222630',
|
|
x86_64: 'faee0a6a0d9db5fe18e9b1d8fade910c81fb52c944956d9a3743948da0ef18a7'
|
|
})
|
|
|
|
depends_on 'glibc' => :library
|
|
depends_on 'ruby' => :library
|
|
depends_on 'ruby_mini_portile2' # R
|
|
depends_on 'ruby_racc' # R
|
|
depends_on 'xzutils' => :library
|
|
depends_on 'zlib' => :library
|
|
|
|
conflicts_ok
|
|
gem_compile_needed
|
|
end
|