mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add binary_compression value to each package * Remove binary_url values and arrays * Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
56 lines
2.0 KiB
Ruby
56 lines
2.0 KiB
Ruby
require 'package'
|
|
|
|
class Libcap < Package
|
|
description 'Libcap implements the user-space interfaces to the POSIX 1003.1e capabilities available in Linux kernels.'
|
|
homepage 'https://directory.fsf.org/wiki/Libcap/'
|
|
version '2.66'
|
|
license 'GPL-2 or BSD'
|
|
compatibility 'all'
|
|
source_url 'https://git.kernel.org/pub/scm/libs/libcap/libcap.git'
|
|
git_hashtag "libcap-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '066b33b52470c318c3e9f63fb3f493ab3dc3eb56bd500e4c431adbca76c585a7',
|
|
armv7l: '066b33b52470c318c3e9f63fb3f493ab3dc3eb56bd500e4c431adbca76c585a7',
|
|
i686: 'da159f192e4f081214a3972c1d47313733687a5a5b9eb5f97d6c6a1b72da84d2',
|
|
x86_64: '8f5459a6d5976be34b32e98802487e04571ef9e6d9a142b3efc1b4e350794883'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'gperf' => :build
|
|
depends_on 'linux_pam'
|
|
|
|
def self.patch
|
|
# add includes option to make it work with gperf-3.1
|
|
system 'sed -e "/gperf --/s/gperf --/gperf --includes --/" -e "/gperf --/s/cap_lookup_name(/cap_dummy(/" -i libcap/Makefile'
|
|
# change the path to ld
|
|
system "sed -i 's,/usr/bin/ld,#{CREW_PREFIX}/bin/ld,g' Make.Rules"
|
|
# change prefix
|
|
system "sed -i 's,prefix=/usr,prefix=#{CREW_PREFIX},g' Make.Rules"
|
|
# set exec_prefix
|
|
system "sed -i 's,^exec_prefix=,exec_prefix=\$(prefix),g' Make.Rules"
|
|
if ARCH == 'x86_64'
|
|
# use system libdir
|
|
system "sed -i 's,^lib_prefix=\$(exec_prefix),lib_prefix=#{CREW_LIB_PREFIX},g' Make.Rules"
|
|
end
|
|
# http://git.yoctoproject.org/cgit.cgi/poky/plain/meta/recipes-support/libcap/files/0001-ensure-the-XATTR_NAME_CAPS-is-defined-when-it-is-use.patch
|
|
system 'sed -i "s,^\#ifdef VFS_CAP_U32,\#if defined (VFS_CAP_U32) \&\& defined (XATTR_NAME_CAPS),g" libcap/cap_file.c'
|
|
end
|
|
|
|
def self.build
|
|
system "#{CREW_ENV_OPTIONS} make"
|
|
end
|
|
|
|
def self.install
|
|
system 'make', 'RAISE_SETFCAP=no', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
end
|
|
|
|
def self.check
|
|
# Tests do not work in a Docker container.
|
|
return if CREW_IN_CONTAINER
|
|
|
|
system 'make', 'test'
|
|
end
|
|
end
|