Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 71 additions & 0 deletions Formula/p/pipewire.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
class Pipewire < Formula
desc "Server and user space API to deal with multimedia pipelines"
homepage "https://pipewire.org"
url "https://gitlab.freedesktop.org/pipewire/pipewire/-/archive/1.4.9/pipewire-1.4.9.tar.gz"
sha256 "8066a7b220069e4c6e3b02bd2b6ea303bba66df255023c07c99323449ba8fe3c"
license all_of: ["GPL-2.0-only", "LGPL-2.1-or-later", "MIT"]
Comment thread
ReenigneArcher marked this conversation as resolved.
head "https://gitlab.freedesktop.org/pipewire/pipewire.git", branch: "master"

# We restrict matching to versions with an even-numbered minor version number,
# as an odd-numbered minor version number indicates a development version:
# https://gitlab.gnome.org/GNOME/libdex/-/issues/22#note_2368290
livecheck do
url :stable
regex(/^v?(\d+\.\d*[02468](?:\.\d+)*)$/i)
end

bottle do
sha256 arm64_linux: "6d572cd52c0c3329c53e77a3d6c1d4a6bdd001fb78ddb641248a5e93486892e4"
sha256 x86_64_linux: "0c0e172381438d5b4abc7b2b478bcee91342ae768a9b11b5e584157a6c1f1304"
end

depends_on "meson" => :build
depends_on "ninja" => :build
depends_on "pkgconf" => [:build, :test]
depends_on "alsa-lib"
depends_on "dbus"
depends_on "fftw"
depends_on "glib"
depends_on "gstreamer"
depends_on "libsndfile"
depends_on :linux
depends_on "ncurses"
depends_on "openssl@3"
depends_on "opus"
depends_on "pulseaudio"
depends_on "readline"
depends_on "systemd"

def install
args = %w[
-Dexamples=disabled
-Dtests=disabled
-Dudevrulesdir=#{lib}/udev/rules.d
]

system "meson", "setup", "build", *args, *std_meson_args
system "meson", "compile", "-C", "build", "--verbose"
system "meson", "install", "-C", "build"
end

test do
(testpath/"test.c").write <<~C
#include <pipewire/pipewire.h>
#include <assert.h>

int main() {
pw_init(NULL, NULL);

// https://gitlab.freedesktop.org/pipewire/pipewire/-/blob/193384b26aba3917d086ac3f009aa2cab9d197d2/src/pipewire/version.h.in#L25-L27
assert(pw_check_library_version(PW_MAJOR, PW_MINOR, PW_MICRO));

pw_deinit();
return 0;
}
C

flags = shell_output("pkgconf --cflags --libs libpipewire-0.3").chomp.split
system ENV.cc, "test.c", "-o", "test", *flags
system "./test"
end
end
Loading