mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* Swig 4.3.0 => 4.3.1 * Add built packages for linux/386 to update-swig * Add built packages for linux/amd64 to update-swig * Add built packages for linux/arm/v7 to update-swig --------- Co-authored-by: Ed Reel <edreel@gmail.com> Co-authored-by: uberhacker <uberhacker@users.noreply.github.com>
27 lines
841 B
Ruby
27 lines
841 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Swig < Autotools
|
|
description 'Simplified Wrapper and Interface Generator'
|
|
homepage 'https://www.swig.org/'
|
|
version '4.3.1'
|
|
license 'GPL-3, BSD and BSD-2'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/swig/swig'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'ffde52784e959c30958692ae15986ef69c842b0df9d3222ebb61f9143c6ed2ed',
|
|
armv7l: 'ffde52784e959c30958692ae15986ef69c842b0df9d3222ebb61f9143c6ed2ed',
|
|
i686: '1c07e974483808095cc3e42155f3bda84e84f5dcaadfa67fc388aaab7d424a19',
|
|
x86_64: '8bf4425b48e1b6760f01eb4327831b28c196f0965d66f2e1784fa9c0c15a48b5'
|
|
})
|
|
|
|
depends_on 'boost' => :build
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'pcre' => :build
|
|
depends_on 'pcre2' # R
|
|
depends_on 'zlib' # R
|
|
end
|