mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 07:28:01 -05:00
* cbase 1.3.7-3 -> 1.4 * Add built packages for linux/386 to cbase * Add built packages for linux/amd64 to cbase * Add built packages for linux/arm/v7 to cbase --------- Co-authored-by: Zopolis4 <creatorsmithmdt@gmail.com> Co-authored-by: Zopolis4 <Zopolis4@users.noreply.github.com>
26 lines
878 B
Ruby
26 lines
878 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Cbase < Autotools
|
|
description 'cbase is a C library of useful functions that simplify systems software development on System V UNIX.'
|
|
homepage 'https://www.hyperrealm.com/oss_cbase.shtml'
|
|
version '1.4'
|
|
license 'LGPL-2.1'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/hyperrealm/cbase.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '49cee9ad81264b8bf2f8dbcb2c3415453c923a11f69edbef1302f753827e870f',
|
|
armv7l: '49cee9ad81264b8bf2f8dbcb2c3415453c923a11f69edbef1302f753827e870f',
|
|
i686: 'd518a6e7e4cc41244c947a289ef2071e2fe5ecf1b51f0c7f0ff973106352d2cf',
|
|
x86_64: '3ec3e9c82d5aa3649eecaaec20245abd16c3fbf7835660c06270e3d6a711446d'
|
|
})
|
|
|
|
depends_on 'expat'
|
|
depends_on 'e2fsprogs' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'krb5' # R
|
|
depends_on 'libtirpc' # R
|
|
end
|