mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* combine nss & nspr (-> 3.69.1, 4.32) as they share source package * recommended changes * Add i686 binary Co-authored-by: Ed Reel <edreel@gmail.com>
15 lines
353 B
Ruby
15 lines
353 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
|