require 'package' class Xfsprogs < Package description 'XFS filesystem utilities' homepage 'https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git/' version "6.15.0-#{CREW_ICU_VER}" license 'LGPL-2.1' compatibility 'aarch64 armv7l x86_64' source_url 'https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git' git_hashtag "v#{version.split('-').first}" binary_compression 'tar.zst' binary_sha256({ aarch64: '83a58ffab41c114b605ece09f1c3348a2f853b963053ece82f11e7893646b50c', armv7l: '83a58ffab41c114b605ece09f1c3348a2f853b963053ece82f11e7893646b50c', x86_64: '9fae8e4f8ed6aa2e03e5408bbe966b14eeb48198ad3e036975df9d1b66ce0900' }) depends_on 'gcc_lib' # R depends_on 'gettext' => :build depends_on 'glibc' # R depends_on 'icu4c' # R depends_on 'libeconf' # R depends_on 'libinih' # R depends_on 'liburcu' # R depends_on 'lvm2' # R depends_on 'util_linux' # R def self.build system 'make configure' system "DEBUG=-DNDEBUG ./configure #{CREW_CONFIGURE_OPTIONS}" system 'make' end def self.install system "make DIST_ROOT=#{CREW_DEST_DIR} install install-dev" end end