mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Rename IgnoredPatterns to AllowedPatterns. * Exclude docopt.rb (not our code) from Rubocop * Disable Style/RedundantReturn * Disable Style/MutableConstant * Disable Style/NumericLiterals * Set Layout/IndentationStyle to spaces * Temporarily disable various cops. * Add Rubocop CI via Octocop * Lint tree with rubocop -A -c .rubocop.yml Co-authored-by: Satadru Pramanik <satadru@gmail.com>
14 lines
352 B
Ruby
14 lines
352 B
Ruby
require 'package'
|
|
|
|
class Nspr < Package
|
|
description 'Netscape Portable Runtime (NSPR) provides a platform-neutral API for system level and libc-like functions.'
|
|
homepage 'https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSPR'
|
|
version '4.32'
|
|
license 'MPL-2.0, GPL-2 or LGPL-2.1'
|
|
compatibility 'all'
|
|
|
|
is_fake
|
|
|
|
depends_on 'nss'
|
|
end
|