Files
chromebrew/packages/protobuf_c.rb
Maximilian Downey Twiss f6dc1d8d4e Derive binary_url in package.rb (#7082)
* Add binary_compression value to each package

* Remove binary_url values and arrays

* Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
2024-01-25 11:03:31 -05:00

36 lines
1.1 KiB
Ruby

# Adapted from Arch Linux protobuf-c PKGBUILD at:
# https://github.com/archlinux/svntogit-packages/raw/packages/protobuf-c/trunk/PKGBUILD
require 'package'
class Protobuf_c < Package
description 'Protocol Buffers implementation in C'
homepage 'https://github.com/protobuf-c/protobuf-c'
version '1.4.1'
license 'BSD'
compatibility 'all'
source_url 'https://github.com/protobuf-c/protobuf-c/releases/download/v1.4.1/protobuf-c-1.4.1.tar.gz'
source_sha256 '4cc4facd508172f3e0a4d3a8736225d472418aee35b4ad053384b137b220339f'
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'f7b0d4df39c76edd82f3b150edf5d660a9613440755bcb35a0c267d97c34d650',
armv7l: 'f7b0d4df39c76edd82f3b150edf5d660a9613440755bcb35a0c267d97c34d650',
i686: 'c2b26a13859ebbfcfff7436e40ca45b9cd051255e090ae04852b91db190cbbb4',
x86_64: '1aaf27b5d3f5bc90042f1beeb3f5b08240695bcf7fae46b80f5a72b81f4aeb86'
})
depends_on 'protobuf'
depends_on 'glibc' # R
depends_on 'gcc_lib' # R
def self.build
system "./configure #{CREW_OPTIONS}"
system 'make'
end
def self.install
system "make DESTDIR=#{CREW_DEST_DIR} install"
end
end