mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add unbuilt updated pip packages to updates-2025-02-01-00-19 * Add unbuilt updated ruby gem packages to updates-2025-02-01-00-19 * Add built packages for linux/386 to updates-2025-02-01-00-19 * Add built packages for linux/amd64 to updates-2025-02-01-00-19 * Add built packages for linux/arm/v7 to updates-2025-02-01-00-19 --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
21 lines
461 B
Ruby
21 lines
461 B
Ruby
# Adapted from Arch Linux ruby-rubocop PKGBUILD at:
|
|
# https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=ruby-rubocop
|
|
|
|
require 'buildsystems/ruby'
|
|
|
|
class Ruby_rubocop < RUBY
|
|
description 'A Ruby static code analyzer and formatter'
|
|
homepage 'https://rubocop.org'
|
|
version "1.71.1-#{CREW_RUBY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'libyaml'
|
|
depends_on 'xdg_base'
|
|
|
|
conflicts_ok
|
|
no_fhs
|
|
no_compile_needed
|
|
end
|