mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Rename CREW_OPTIONS to CREW_CONFIGURE_OPTIONS * Rename build_extras and install_extras to configure_build_extras and configure_install_extras
40 lines
1.4 KiB
Ruby
40 lines
1.4 KiB
Ruby
require 'package'
|
|
|
|
class Linux_pam < Package
|
|
description 'Linux PAM (Pluggable Authentication Modules for Linux) project'
|
|
homepage 'https://github.com/linux-pam/linux-pam'
|
|
version '1.5.3'
|
|
license 'BSD-3'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/linux-pam/linux-pam/releases/download/v1.5.3/Linux-PAM-1.5.3.tar.xz'
|
|
source_sha256 '7ac4b50feee004a9fa88f1dfd2d2fa738a82896763050cd773b3c54b0a818283'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'a371c602ab5519c0d9322f70fe317b3033b5ba1175ba02ab645d87c09fd4a1f9',
|
|
armv7l: 'a371c602ab5519c0d9322f70fe317b3033b5ba1175ba02ab645d87c09fd4a1f9',
|
|
i686: '9410659381a17e918433e2fd6aeeac57ebc7143de46499ce206c2f71d691c59d',
|
|
x86_64: '42470ad49611a6ec7c9d18d61cef06c490ba5224c888394a19762be2afcf470a'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'libdb' # libdb needs to be built with "--enable-dbm"
|
|
depends_on 'libeconf' # R
|
|
|
|
def self.build
|
|
system "./configure #{CREW_CONFIGURE_OPTIONS} \
|
|
--disable-selinux \
|
|
--enable-static \
|
|
--disable-nis"
|
|
system 'make'
|
|
end
|
|
|
|
def self.install
|
|
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/include/security"
|
|
Dir.chdir "#{CREW_DEST_PREFIX}/include" do
|
|
system "find . -type f -exec ln -s #{CREW_PREFIX}/include/{} #{CREW_DEST_PREFIX}/include/security/{} \\;"
|
|
end
|
|
end
|
|
end
|