mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
18 lines
794 B
Ruby
18 lines
794 B
Ruby
require 'package'
|
|
|
|
class Mpc < Package
|
|
version '1.0.3'
|
|
binary_url ({
|
|
aarch64: 'https://github.com/jam7/chromebrew/releases/download/newtoolchains/mpc-1.0.3-chromeos-armv7l.tar.xz',
|
|
armv7l: 'https://github.com/jam7/chromebrew/releases/download/newtoolchains/mpc-1.0.3-chromeos-armv7l.tar.xz',
|
|
i686: 'https://github.com/jam7/chromebrew/releases/download/newtoolchains/mpc-1.0.3-chromeos-i686.tar.xz',
|
|
x86_64: 'https://github.com/jam7/chromebrew/releases/download/newtoolchains/mpc-1.0.3-chromeos-x86_64.tar.xz',
|
|
})
|
|
binary_sha1 ({
|
|
aarch64: '2a05a536cc6fd4da7d948c4732722c5d430ee010',
|
|
armv7l: '2a05a536cc6fd4da7d948c4732722c5d430ee010',
|
|
i686: 'f10689f81749d65d1741f801387e9970eea988d7',
|
|
x86_64: '659123c6bf218d60837579e1fe50dd86f24d487f',
|
|
})
|
|
end
|