mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 07:28:01 -05:00
* Update package. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-libsigsegv: Build Run on linux/amd64. * updater-libsigsegv: Build Run on linux/386. * updater-libsigsegv: Build Run on linux/arm/v7. * updater-libsigsegv: Package File Update Run on linux/386 container. --------- 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> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
30 lines
909 B
Ruby
30 lines
909 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Libsigsegv < Autotools
|
|
description 'GNU libsigsegv is a library for handling page faults in user mode.'
|
|
homepage 'https://www.gnu.org/software/libsigsegv/'
|
|
version '2.15'
|
|
license 'GPL-2+'
|
|
compatibility 'all'
|
|
source_url 'https://git.savannah.gnu.org/git/libsigsegv.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'e499238dcfc3cd52b1540ab9672b924c190ec374ba077cd70f0b0cc62485469b',
|
|
armv7l: 'e499238dcfc3cd52b1540ab9672b924c190ec374ba077cd70f0b0cc62485469b',
|
|
i686: 'c1d26aad638486c0d2f0a6dd470c31189f7c07c846a6b97bd7f87cf2d9492154',
|
|
x86_64: '1b56f3ef877e3e8962a5b4d42c80f2b5a456a252f6e435d81b0159c59c50bb71'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
|
|
autotools_configure_options '--enable-shared \
|
|
--enable-static \
|
|
--enable-relocatable'
|
|
|
|
def self.patch
|
|
system './gitsub.sh pull'
|
|
end
|
|
end
|