mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
20 lines
957 B
Ruby
20 lines
957 B
Ruby
require 'package'
|
|
|
|
class Mpfr < Package
|
|
description 'The MPFR library is a C library for multiple-precision floating-point computations with correct rounding.'
|
|
homepage 'http://www.mpfr.org/'
|
|
version '3.1.5-cc1.3'
|
|
binary_url ({
|
|
aarch64: 'https://github.com/jam7/chrome-cross/releases/download/v1.3/mpfr-3.1.5-cc1.3-chromeos-armv7l.tar.xz',
|
|
armv7l: 'https://github.com/jam7/chrome-cross/releases/download/v1.3/mpfr-3.1.5-cc1.3-chromeos-armv7l.tar.xz',
|
|
i686: 'https://github.com/jam7/chrome-cross/releases/download/v1.3/mpfr-3.1.5-cc1.3-chromeos-i686.tar.xz',
|
|
x86_64: 'https://github.com/jam7/chrome-cross/releases/download/v1.3/mpfr-3.1.5-cc1.3-chromeos-x86_64.tar.xz',
|
|
})
|
|
binary_sha1 ({
|
|
aarch64: 'd201c3e9c7fa3d483e93cb967e9ae78b4578868b',
|
|
armv7l: 'd201c3e9c7fa3d483e93cb967e9ae78b4578868b',
|
|
i686: '71569b4f88e852d0a6734b2be8e200f52248a7fe',
|
|
x86_64: '7d434ebe762b004d9f822f5baa21b9c9f37452b0',
|
|
})
|
|
end
|