mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
43 lines
1.8 KiB
Ruby
43 lines
1.8 KiB
Ruby
require 'package'
|
|
|
|
class Liburing < Package
|
|
description 'liburing provides helpers to setup and teardown io_uring instances.'
|
|
homepage 'https://github.com/axboe/liburing/'
|
|
version '2.0'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url "https://github.com/axboe/liburing/archive/refs/tags/liburing-#{version}.tar.gz"
|
|
source_sha256 'ca069ecc4aa1baf1031bd772e4e97f7e26dfb6bb733d79f70159589b22ab4dc0'
|
|
|
|
binary_url({
|
|
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/liburing/2.0_armv7l/liburing-2.0-chromeos-armv7l.tar.xz',
|
|
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/liburing/2.0_armv7l/liburing-2.0-chromeos-armv7l.tar.xz',
|
|
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/liburing/2.0_i686/liburing-2.0-chromeos-i686.tar.xz',
|
|
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/liburing/2.0_x86_64/liburing-2.0-chromeos-x86_64.tar.xz'
|
|
})
|
|
binary_sha256({
|
|
aarch64: '25bda02208eb872e11c8434523056bb3591996aa6aec935171c5ce81bcb39225',
|
|
armv7l: '25bda02208eb872e11c8434523056bb3591996aa6aec935171c5ce81bcb39225',
|
|
i686: 'd6cdacf0351d2d301d5827b8413768489d2dd6d53fe8d94978ba2d1f1af9ac29',
|
|
x86_64: '960697d65213698aaff0457b536a5ef6d8f45a5614fb3752c0fb572fded4077c'
|
|
})
|
|
|
|
def self.patch
|
|
# system "sed -i '/<unistd.h>/a #include <asm/unistd.h>' test/fc2a85cb02ef-test.c"
|
|
# system "sed -i '/<unistd.h>/a #include <asm/unistd.h>' test/double-poll-crash.c"
|
|
end
|
|
|
|
def self.build
|
|
system "env CFLAGS='-flto=auto' \
|
|
CXXFLAGS='-pipe -flto=auto' \
|
|
LDFLAGS='-flto=auto' \
|
|
./configure \
|
|
#{CREW_OPTIONS.sub(/--build=.*/, '')}"
|
|
system 'make -C src'
|
|
end
|
|
|
|
def self.install
|
|
system "make DESTDIR=#{CREW_DEST_DIR} install"
|
|
end
|
|
end
|