mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-13 01:18:14 -05:00
* berry 0.1.5 -> 0.1.12 * BIND 9.20.0-icu75.1 -> 9.21.0 * bitmap 1.0.9 -> 1.1.1 * bitpocket 0.2 -> 0.3 * bleachbit 4.4.2 -> 4.6.1
41 lines
1.3 KiB
Ruby
41 lines
1.3 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Bind < Autotools
|
|
description 'BIND is open source software that enables you to publish your Domain Name System (DNS) information on the Internet, and to resolve DNS queries for your users.'
|
|
homepage 'https://www.isc.org/bind/'
|
|
version '9.21.0'
|
|
license 'MPL-2.0'
|
|
compatibility 'all'
|
|
source_url 'https://gitlab.isc.org/isc-projects/bind9.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'c884e14dd54d6371f913ea29b2e71dd6dfc781484e758665b533218fb63c2dc7',
|
|
armv7l: 'c884e14dd54d6371f913ea29b2e71dd6dfc781484e758665b533218fb63c2dc7',
|
|
i686: '7650f2e7c4cc2aa1e4b28150e35c89b40c00351440d40495d8df990247540af7',
|
|
x86_64: '4cae0f0b7c17ea994e1d1be8c97ba4a61e78104aa2a934a4070ece76c5c0e64e'
|
|
})
|
|
|
|
depends_on 'e2fsprogs' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'jemalloc' # R
|
|
depends_on 'json_c' # R
|
|
depends_on 'krb5' # R
|
|
depends_on 'libcap' # R
|
|
depends_on 'libedit' # R
|
|
depends_on 'libidn2' # R
|
|
depends_on 'libnghttp2' # R
|
|
depends_on 'libunistring' # R
|
|
depends_on 'liburcu' # R
|
|
depends_on 'libuv' # R
|
|
depends_on 'libxml2' # R
|
|
depends_on 'ncurses' # R
|
|
depends_on 'openssl' # R
|
|
depends_on 'py3_ply' => :build
|
|
depends_on 'sphinx' => :build
|
|
depends_on 'zlib' # R
|
|
|
|
configure_options '--enable-fixed-rrset --enable-full-report --with-libidn2'
|
|
end
|