mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* libffcall => 2.5 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust package Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-libffcall: Package File Update Run on linux/386 container. * updater-libffcall: Package File Update Run on linux/amd64 container. * updater-libffcall: Package File Update Run on linux/arm/v7 container. --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <220035932+chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
27 lines
984 B
Ruby
27 lines
984 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Libffcall < Autotools
|
|
description 'GNU libffcall is a library which can be used to build foreign function call interfaces in embedded interpreters.'
|
|
homepage 'https://www.gnu.org/software/libffcall/'
|
|
version '2.5'
|
|
license 'GPL-3+'
|
|
compatibility 'all'
|
|
source_url "https://ftp.gnu.org/gnu/libffcall/libffcall-#{version}.tar.gz"
|
|
source_sha256 '7f422096b40498b1389093955825f141bb67ed6014249d884009463dc7846879'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '965a4937f3fd25809350d4403b21f255eec552644927da770e60fbe0bf62f220',
|
|
armv7l: '965a4937f3fd25809350d4403b21f255eec552644927da770e60fbe0bf62f220',
|
|
i686: '4fda7d35562cd7d18ae14dbb5e089c1b98d215551798572acea2255a53a6f2a3',
|
|
x86_64: '47cc626e0b356fd819f3536e8a18592a8b9a7663b6cabe5215c8b52666bd5839'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
|
|
autotools_make_j1
|
|
|
|
autotools_configure_options '--with-pic \
|
|
--disable-static'
|
|
end
|