mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Add missing Anitya package mappings along with package homepages * Remove qt5 package mapping in const.rb
46 lines
1.6 KiB
Ruby
46 lines
1.6 KiB
Ruby
require 'package'
|
|
|
|
class Ltrace < Package
|
|
description 'ltrace intercepts and records dynamic library calls which are called by an executed process and the signals received by that process.'
|
|
homepage 'https://gitlab.com/cespedes/ltrace'
|
|
version '0.7.91-ea8928'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'https://gitlab.com/cespedes/ltrace.git'
|
|
git_hashtag 'ea8928dab8a0a1f549d0ed8ebc6ec563e9fa1159'
|
|
binary_compression 'tpxz'
|
|
|
|
binary_sha256({
|
|
aarch64: '09bc63d26ef561e10f01628d61eb4a6c8d5caeb24a77f19deddb5fa1a5867dd2',
|
|
armv7l: '09bc63d26ef561e10f01628d61eb4a6c8d5caeb24a77f19deddb5fa1a5867dd2',
|
|
i686: 'fc5ca046f26608668f2885a0389d47baf7fea535503366c79464bb9c0014873d',
|
|
x86_64: '69ce6519d523f4b225e28f421f766c4f502a0e970e093a1d3beba117904898a7'
|
|
})
|
|
|
|
depends_on 'libunwind'
|
|
depends_on 'procps'
|
|
|
|
def self.patch
|
|
# Use readdir instead of deprecated readdir_r.
|
|
# This patch can be removed after the merge request is merged.
|
|
system 'curl -L#O https://gitlab.com/cespedes/ltrace/-/merge_requests/1.diff'
|
|
abort 'Checksum mismatch. 😔 Try again.'.lightred unless Digest::SHA256.hexdigest(File.read('1.diff')) == '77442c497bd8410e0afba3a03638a6504ed9ae216bd694a771682f592a9c3759'
|
|
system 'patch -p1 < 1.diff'
|
|
end
|
|
|
|
def self.build
|
|
system './autogen.sh'
|
|
system 'filefix'
|
|
system "./configure #{CREW_CONFIGURE_OPTIONS} --disable-werror --without-elfutils --disable-maintainer-mode"
|
|
system 'make'
|
|
end
|
|
|
|
def self.check
|
|
system 'make', 'check'
|
|
end
|
|
|
|
def self.install
|
|
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
end
|
|
end
|