mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Update vulkan and ninja. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Xorg_server => 21.1.14 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Xwayland => 24.1.4 Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
89 lines
3.1 KiB
Ruby
89 lines
3.1 KiB
Ruby
require 'buildsystems/meson'
|
|
|
|
class Pipewire < Meson
|
|
description 'PipeWire is a project that aims to greatly improve handling of audio and video under Linux.'
|
|
homepage 'https://pipewire.org'
|
|
if Gem::Version.new(CREW_KERNEL_VERSION.to_s) < Gem::Version.new('3.9')
|
|
version '0.3.29'
|
|
elsif Gem::Version.new(CREW_KERNEL_VERSION.to_s) <= Gem::Version.new('5.4') || Gem::Version.new(LIBC_VERSION) < Gem::Version.new('2.32')
|
|
version '0.3.60'
|
|
else
|
|
version '1.2.6'
|
|
min_glibc '2.32'
|
|
end
|
|
compatibility 'x86_64 aarch64 armv7l'
|
|
license 'LGPL-2.1+'
|
|
source_url 'https://gitlab.freedesktop.org/pipewire/pipewire.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
if Gem::Version.new(CREW_KERNEL_VERSION.to_s) < Gem::Version.new('3.9')
|
|
binary_sha256({
|
|
i686: '0dbeda58c4e1db7a180ebfb2b7bc3057cc6966927f4d5ee543953b734dfc4510'
|
|
})
|
|
elsif Gem::Version.new(CREW_KERNEL_VERSION.to_s) <= Gem::Version.new('5.4')
|
|
binary_sha256({
|
|
aarch64: '237ad8299b16e6d294a6561a4959efb47fc72ee66d06f51a3863f55dbdedcf78',
|
|
armv7l: '237ad8299b16e6d294a6561a4959efb47fc72ee66d06f51a3863f55dbdedcf78',
|
|
x86_64: '1534c6a7d71870ac60ec77aab0f795e148e63cf2eac61ff6ec58a5d3af23d994'
|
|
})
|
|
else
|
|
binary_sha256({
|
|
aarch64: 'fdacbfe0ebfcf7af8d3d3acc6b895fed672a53d0245739edbd64671a0e95c8c5',
|
|
armv7l: 'fdacbfe0ebfcf7af8d3d3acc6b895fed672a53d0245739edbd64671a0e95c8c5',
|
|
x86_64: '6c5363156c2d4251c9a1b604e8961267ce0e0a38554f87faa6766060e9203224'
|
|
})
|
|
end
|
|
|
|
depends_on 'alsa_lib' # R
|
|
depends_on 'alsa_plugins' => :build
|
|
depends_on 'avahi' # R
|
|
depends_on 'ca_certificates' => :build
|
|
depends_on 'dbus' # R
|
|
depends_on 'elogind' # R
|
|
depends_on 'eudev' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'gsettings_desktop_schemas' => :build
|
|
depends_on 'gstreamer' # R
|
|
depends_on 'jack' # R
|
|
depends_on 'libdrm' # R
|
|
depends_on 'libsndfile' # R
|
|
depends_on 'lilv' # R
|
|
depends_on 'ncurses' # R
|
|
depends_on 'openssl' # R
|
|
depends_on 'opus' # R
|
|
depends_on 'pulseaudio' # R
|
|
depends_on 'py3_lxml' => :build
|
|
depends_on 'readline' # R
|
|
depends_on 'vulkan_headers' => :build
|
|
depends_on 'vulkan_icd_loader' # R
|
|
depends_on 'webrtc_audio_processing' # R
|
|
|
|
def self.prebuild
|
|
# Without running the ca_certificates postinstall armv7l build breaks
|
|
# complaining about the network not working.
|
|
system "#{CREW_PREFIX}/bin/update-ca-certificates --fresh --certsconf #{CREW_PREFIX}/etc/ca-certificates.conf"
|
|
end
|
|
|
|
pre_meson_options "LDFLAGS='#{CREW_LDFLAGS} -pthread'"
|
|
meson_options "-Dbluez5-backend-hsphfpd=disabled \
|
|
-Dbluez5-backend-ofono=disabled \
|
|
-Dbluez5=disabled \
|
|
-Dexamples=disabled \
|
|
-Dtest=disabled \
|
|
-Dudevrulesdir=#{CREW_PREFIX}/etc/udev/rules.d \
|
|
-Dv4l2=disabled \
|
|
-Dvolume=auto \
|
|
-Dvulkan=enabled"
|
|
|
|
def self.install
|
|
system "DESTDIR=#{CREW_DEST_DIR} #{CREW_NINJA} -C builddir install"
|
|
Dir.chdir("#{CREW_DEST_PREFIX}/include") do
|
|
FileUtils.ln_sf 'spa-0.2/spa', 'spa'
|
|
FileUtils.ln_sf 'pipewire-0.3/pipewire', 'pipewire'
|
|
end
|
|
end
|
|
end
|