mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Update buildsystems, update jq, add jq to core for arm. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Only report build options if they exist. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix overeager sed replacement. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * workflow debugging Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add logging for build errors. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Revert to function in each package file. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update jq since it needs gcc14 to build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to buildsystems * remove deprecated gfbgraph Signed-off-by: Satadru Pramanik <satadru@gmail.com> * fix git tag for gnome_maps Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update llvm20 package file. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gnome_maps deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Abstract out buildsystems_methods reporting. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Keep LIBC_VERSION const from being empty. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update crew_profile_base and libxml2 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * clarify Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update libarchive Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update libavif Signed-off-by: Satadru Pramanik <satadru@gmail.com> * more updates Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add libxml2 build comment. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add build comment to libarchive. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Don't warn for missing directory during package removal. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
39 lines
1.2 KiB
Ruby
39 lines
1.2 KiB
Ruby
# Adapted from Arch Linux libabigail PKGBUILD at:
|
|
# https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=libabigail
|
|
|
|
require 'buildsystems/autotools'
|
|
|
|
class Libabigail < Autotools
|
|
description 'ABI Generic Analysis and Instrumentation Library'
|
|
homepage 'https://sourceware.org/libabigail/'
|
|
version "2.5-#{CREW_PY_VER}"
|
|
license 'Apache'
|
|
compatibility 'all'
|
|
source_url 'https://sourceware.org/git/libabigail.git'
|
|
git_hashtag "libabigail-#{version.split('-').first}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '82d98b316dfbe648d0a8dbeb0fe09875609d53c3ecb3cfe5457eea84f5d2e3b7',
|
|
armv7l: '82d98b316dfbe648d0a8dbeb0fe09875609d53c3ecb3cfe5457eea84f5d2e3b7',
|
|
i686: '87a2d7f4db11ddecbe6a49447ca127c34c9ffe3e0dd076808870892de66176bd',
|
|
x86_64: '465573c101658eb095fa1442bf7ae16531aaa783c345ca12930e2d7365977f47'
|
|
})
|
|
|
|
depends_on 'binutils' # R
|
|
depends_on 'elfutils' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'libxml2' # R
|
|
depends_on 'python3' => :build
|
|
depends_on 'sphinx' => :build
|
|
depends_on 'zlib' # R
|
|
depends_on 'zstd' # R
|
|
depends_on 'gdb' # R
|
|
|
|
autotools_configure_options '--enable-bash-completion \
|
|
--disable-manual \
|
|
--disable-apidoc \
|
|
--disable-static'
|
|
end
|