mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt libtirpc to updater-libtirpc-1.3.7 * updater-libtirpc-1.3.7: Build Run on linux/386. * updater-libtirpc-1.3.7: Build Run on linux/arm/v7. * updater-libtirpc-1.3.7: Build Run on linux/amd64. * updater-libtirpc-1.3.7: Package File Update Run on linux/386 container. --------- Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
24 lines
919 B
Ruby
24 lines
919 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Libtirpc < Autotools
|
|
description 'Libtirpc is a port of Suns Transport-Independent RPC library to Linux.'
|
|
homepage 'https://sourceforge.net/projects/libtirpc/'
|
|
version '1.3.7'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url "http://downloads.sourceforge.net/project/libtirpc/libtirpc/#{version}/libtirpc-#{version}.tar.bz2"
|
|
source_sha256 'b47d3ac19d3549e54a05d0019a6c400674da716123858cfdb6d3bdd70a66c702'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '3b55d2647b8984cf7404c20c3a6aa2f4ffee848bb989739d756abb9764068e38',
|
|
armv7l: '3b55d2647b8984cf7404c20c3a6aa2f4ffee848bb989739d756abb9764068e38',
|
|
i686: '662adf4a07f4df52a71ec5a7098676e3865fc50c48794ef534037c1e1e964b3c',
|
|
x86_64: '081acfd9da4eeda100fcbe9f538f7af4ba1531b13c31f4662395cf9d50c73ac4'
|
|
})
|
|
|
|
depends_on 'e2fsprogs' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'krb5' # R
|
|
end
|