mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* linux_pam -> 1.7.2 in updater-linux_pam-1.7.2 * Fix libcrypt typo in package file. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Mark packages from successful builds as automatically buildable. * updater-linux_pam-1.7.2: Package File Update Run on linux/386 container. * updater-linux_pam-1.7.2: Package File Update Run on linux/amd64 container. * updater-linux_pam-1.7.2: Package File Update Run on linux/arm/v7 container. --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.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>
42 lines
1.4 KiB
Ruby
42 lines
1.4 KiB
Ruby
require 'buildsystems/meson'
|
|
|
|
class Linux_pam < Meson
|
|
description 'Linux PAM (Pluggable Authentication Modules for Linux) project'
|
|
homepage 'https://github.com/linux-pam/linux-pam'
|
|
version '1.7.2'
|
|
license 'BSD-3'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/linux-pam/linux-pam.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'a01010ccd68fe7cd022052d5bb4136d5e72ffd7d4897990b3133c386f65ba145',
|
|
armv7l: 'a01010ccd68fe7cd022052d5bb4136d5e72ffd7d4897990b3133c386f65ba145',
|
|
i686: '4236d1bd3642aeb129a00813416fd2cbbaac9d188bbf3f2fbdaa4706ac85daea',
|
|
x86_64: '9bb1165900b6bf5be8fac459ce3cee8f07c9b271dcae514a23f64ecd7dffcb3e'
|
|
})
|
|
|
|
depends_on 'gdbm' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'libeconf' # R
|
|
depends_on 'libxcrypt' # R
|
|
|
|
no_mold
|
|
|
|
meson_options '-Ddb=gdbm \
|
|
-Ddocs=disabled \
|
|
-Dselinux=disabled \
|
|
-Dnis=disabled'
|
|
|
|
meson_build_extras do
|
|
# We need to move libcrypt.so out of the way so libxcrypt is used.
|
|
FileUtils.mv "#{CREW_LIB_PREFIX}/libcrypt.so.bak", "#{CREW_LIB_PREFIX}/libcrypt.so" if File.file? "#{CREW_LIB_PREFIX}/libcrypt.so.bak"
|
|
end
|
|
|
|
def self.prebuild
|
|
# We need to move libcrypt.so out of the way so libxcrypt is used.
|
|
FileUtils.mv "#{CREW_LIB_PREFIX}/libcrypt.so", "#{CREW_LIB_PREFIX}/libcrypt.so.bak" if File.file? "#{CREW_LIB_PREFIX}/libcrypt.so"
|
|
end
|
|
end
|