mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Cmake 4.0.1 => 4.0.2 * Adjust cmake build options to properly set LIBRARY_PATH. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust cmake build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust cmake build options. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Remove 'mold -run' usage as that confuses LIBRARY_PATH overrides. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to update-cmake * Add built packages for linux/amd64 to update-cmake * Add built packages for linux/arm/v7 to update-cmake * Confirm autotools change works with nano update. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to update-cmake * Add built packages for linux/amd64 to update-cmake * Add built packages for linux/arm/v7 to update-cmake --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Ed Reel <edreel@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
51 lines
1.7 KiB
Ruby
51 lines
1.7 KiB
Ruby
require 'package'
|
|
|
|
class Krb5 < Package
|
|
description 'Kerberos is a network authentication protocol.'
|
|
homepage 'https://web.mit.edu/kerberos/'
|
|
version '1.21.2'
|
|
license 'openafs-krb5-a, BSD, MIT, OPENLDAP, BSD-2, HPND, BSD-4, ISC, RSA, CC-BY-SA-3.0 and BSD-2 or GPL-2+ )'
|
|
compatibility 'all'
|
|
source_url 'https://web.mit.edu/kerberos//dist/krb5/1.21/krb5-1.21.2.tar.gz'
|
|
source_sha256 '9560941a9d843c0243a71b17a7ac6fe31c7cebb5bce3983db79e52ae7e850491'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '3c9b9dd47e77adf9a413c6e5475017c0bb18b3498bd59985ce689c26c603098b',
|
|
armv7l: '3c9b9dd47e77adf9a413c6e5475017c0bb18b3498bd59985ce689c26c603098b',
|
|
i686: '6af0d60a68a5b63aaed64552e94e99cc9238ce4ebcf9e2bb25017c993b0e149d',
|
|
x86_64: 'e73598b85c21ad90e56fe48b7af09f287c3a5962a2c7c57e35dd3090ebdccd20'
|
|
})
|
|
|
|
depends_on 'ccache' => :build
|
|
depends_on 'e2fsprogs' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'openssl' # R
|
|
|
|
def self.build
|
|
Dir.chdir 'src' do
|
|
# krb5 built with gcc10 or newer needs -fcommon
|
|
# See https://github.com/ripple/rippled/pull/3813
|
|
@cppflags = "#{CREW_COMMON_FLAGS} -I#{CREW_PREFIX}/include/et -fcommon"
|
|
@path = "#{CREW_PREFIX}/bin:" + ENV.fetch('PATH', nil)
|
|
system "CPPFLAGS='#{@cppflags}' \
|
|
PATH=#{@path} \
|
|
./configure #{CREW_CONFIGURE_OPTIONS} \
|
|
--localstatedir=#{CREW_PREFIX}/var/krb5kdc \
|
|
--enable-shared \
|
|
--with-system-et \
|
|
--with-system-ss \
|
|
--without-system-verto"
|
|
system "env PATH=#{@path} \
|
|
make -j#{CREW_NPROC}"
|
|
end
|
|
end
|
|
|
|
def self.install
|
|
Dir.chdir 'src' do
|
|
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
end
|
|
end
|
|
end
|