mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Adjust const.rb and packages to use generated version constants. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gem binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update update scripts. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Libxml2 => 2.13.4 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust install.sh to handle new gem package versioning suffix. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update openimageio Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update py3_ruff Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add pip binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Move activesupport gem behind requre_gem function. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust file path in ruby_pry. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
38 lines
1.2 KiB
Ruby
38 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: '450734b97afc1dfca6ef49224af28470cbe60f71c3cb49ef618645ad8a408cec',
|
|
armv7l: '450734b97afc1dfca6ef49224af28470cbe60f71c3cb49ef618645ad8a408cec',
|
|
i686: '8abe86ed59dee6eb9b597153d064333db38bab3392e9ac4c308a6f1f3b3905c8',
|
|
x86_64: '6af286b67a55f5765e724ee1bd3ca43c153cd07b91e016f18a9cf5c96435ecc2'
|
|
})
|
|
|
|
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
|
|
|
|
configure_options '--enable-bash-completion \
|
|
--disable-manual \
|
|
--disable-apidoc \
|
|
--disable-static'
|
|
end
|