Co-authored-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.tech> Reviewed-on: https://git.avroid.tech/Conan/conan_build/pulls/9
173 lines
7.4 KiB
Python
173 lines
7.4 KiB
Python
import os
|
|
|
|
from conan import ConanFile
|
|
from conan.errors import ConanInvalidConfiguration
|
|
from conan.tools.build import cross_building
|
|
from conan.tools.env import VirtualBuildEnv, VirtualRunEnv
|
|
from conan.tools.files import copy, get, rm, rmdir
|
|
from conan.tools.gnu import Autotools, AutotoolsDeps, AutotoolsToolchain, PkgConfigDeps
|
|
from conan.tools.layout import basic_layout
|
|
|
|
required_conan_version = ">=1.53.0"
|
|
|
|
|
|
class PulseAudioConan(ConanFile):
|
|
name = "pulseaudio"
|
|
description = "PulseAudio is a sound system for POSIX OSes, meaning that it is a proxy for sound applications."
|
|
topics = ("sound",)
|
|
url = "https://github.com/conan-io/conan-center-index"
|
|
homepage = "http://pulseaudio.org/"
|
|
license = "LGPL-2.1"
|
|
|
|
package_type = "library"
|
|
settings = "os", "arch", "compiler", "build_type"
|
|
options = {
|
|
"shared": [True, False],
|
|
"fPIC": [True, False],
|
|
"with_alsa": [True, False],
|
|
"with_glib": [True, False],
|
|
"with_fftw": [True, False],
|
|
"with_x11": [True, False],
|
|
"with_openssl": [True, False],
|
|
"with_dbus": [True, False],
|
|
}
|
|
default_options = {
|
|
"shared": False,
|
|
"fPIC": True,
|
|
"with_alsa": True,
|
|
"with_glib": False,
|
|
"with_fftw": False,
|
|
"with_x11": True,
|
|
"with_openssl": True,
|
|
"with_dbus": False,
|
|
}
|
|
|
|
def config_options(self):
|
|
if self.settings.os == "Windows":
|
|
del self.options.fPIC
|
|
|
|
def configure(self):
|
|
if self.options.shared:
|
|
self.options.rm_safe("fPIC")
|
|
self.settings.rm_safe("compiler.libcxx")
|
|
self.settings.rm_safe("compiler.cppstd")
|
|
if not self.options.with_dbus:
|
|
del self.options.with_fftw
|
|
|
|
def layout(self):
|
|
basic_layout(self, src_folder="src")
|
|
|
|
def requirements(self):
|
|
self.requires("libiconv/1.17")
|
|
self.requires("libsndfile/1.2.2")
|
|
self.requires("libcap/2.69")
|
|
# self.requires("libtool/2.4.7")
|
|
if self.options.with_alsa:
|
|
self.requires("libalsa/1.2.10")
|
|
if self.options.with_glib:
|
|
self.requires("glib/2.78.3")
|
|
if self.options.get_safe("with_fftw"):
|
|
self.requires("fftw/3.3.10")
|
|
if self.options.with_x11:
|
|
self.requires("xorg/system")
|
|
if self.options.with_openssl:
|
|
self.requires("openssl/[>=1.1 <4]")
|
|
if self.options.with_dbus:
|
|
self.requires("dbus/1.15.8")
|
|
|
|
def validate(self):
|
|
if self.settings.os != "Linux":
|
|
raise ConanInvalidConfiguration("pulseaudio supports only linux currently")
|
|
|
|
if self.options.get_safe("with_fftw"):
|
|
if not self.dependencies["fftw"].options.precision_single:
|
|
raise ConanInvalidConfiguration(
|
|
f"Pulse audio uses fftw single precision. "
|
|
"Either set option -o fftw/*:precision_single=True or -o pulseaudio/*:with_fftw=False"
|
|
)
|
|
|
|
def build_requirements(self):
|
|
# self.tool_requires("gettext/0.21")
|
|
# self.tool_requires("libtool/2.4.7")
|
|
if not self.conf.get("tools.gnu:pkg_config", check_type=str):
|
|
self.tool_requires("pkgconf/[>=2.1.0]")
|
|
|
|
def source(self):
|
|
get(self, **self.conan_data["sources"][self.version], strip_root=True)
|
|
|
|
def generate(self):
|
|
env = VirtualBuildEnv(self)
|
|
env.generate()
|
|
if not cross_building(self):
|
|
env = VirtualRunEnv(self)
|
|
env.generate(scope="build")
|
|
|
|
tc = AutotoolsToolchain(self)
|
|
yes_no = lambda v: "yes" if v else "no"
|
|
tc.configure_args.extend([
|
|
f"--enable-shared={yes_no(self.options.shared)}",
|
|
f"--enable-static={yes_no(not self.options.shared)}",
|
|
f"--enable-glib2={yes_no(self.options.with_glib)}",
|
|
f"--with-fftw={yes_no(self.options.get_safe('with_fftw'))}",
|
|
"--with-udev-rules-dir=${prefix}/bin/udev/rules.d",
|
|
f"--with-systemduserunitdir={os.path.join(self.build_folder, 'ignore')}",
|
|
])
|
|
# Workaround for https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=268250
|
|
# clang-15 works, but we need to skip the gnu11 flag check
|
|
if self.settings.compiler == "clang" and self.settings.compiler.version == 15:
|
|
tc.configure_args.append("ax_cv_check_cflags__pedantic__Werror__std_gnu11=yes")
|
|
for lib in ["alsa", "x11", "openssl", "dbus"]:
|
|
tc.configure_args.append(f"--enable-{lib}={yes_no(getattr(self.options, f'with_{lib}'))}")
|
|
# TODO: to remove when automatically handled by AutotoolsToolchain
|
|
tc.configure_args.append("--libexecdir=${prefix}/bin")
|
|
tc.generate()
|
|
deps = AutotoolsDeps(self)
|
|
deps.generate()
|
|
pkg = PkgConfigDeps(self)
|
|
pkg.generate()
|
|
|
|
def build(self):
|
|
autotools = Autotools(self)
|
|
autotools.configure()
|
|
autotools.make()
|
|
|
|
def package(self):
|
|
copy(self, "LICENSE", src=self.source_folder, dst=os.path.join(self.package_folder, "licenses"))
|
|
autotools = Autotools(self)
|
|
autotools.install()
|
|
rmdir(self, os.path.join(self.package_folder, "etc"))
|
|
rmdir(self, os.path.join(self.package_folder, "share"))
|
|
rmdir(self, os.path.join(self.package_folder, "lib", "cmake"))
|
|
rmdir(self, os.path.join(self.package_folder, "lib", "pkgconfig"))
|
|
rm(self, "*.la", os.path.join(self.package_folder, "lib"), recursive=True)
|
|
|
|
def package_info(self):
|
|
self.cpp_info.components["pulse"].set_property("pkg_config_name", "libpulse")
|
|
self.cpp_info.components["pulse"].libs = ["pulse", f"pulsecommon-{self.version}"]
|
|
self.cpp_info.components["pulse"].libdirs.append(os.path.join("lib", "pulseaudio"))
|
|
#self.cpp_info.components["pulse"].requires = ["libiconv::libiconv", "libsndfile::libsndfile", "libcap::libcap", "libtool::libtool"]
|
|
self.cpp_info.components["pulse"].requires = ["libiconv::libiconv", "libsndfile::libsndfile", "libcap::libcap"]
|
|
if self.options.with_alsa:
|
|
self.cpp_info.components["pulse"].requires.append("libalsa::libalsa")
|
|
if self.options.get_safe("with_fftw"):
|
|
self.cpp_info.components["pulse"].requires.append("fftw::fftw")
|
|
if self.options.with_x11:
|
|
self.cpp_info.components["pulse"].requires.extend(["xorg::x11", "xorg::x11-xcb"])
|
|
if self.options.with_openssl:
|
|
self.cpp_info.components["pulse"].requires.append("openssl::openssl")
|
|
if self.options.with_dbus:
|
|
self.cpp_info.components["pulse"].requires.append("dbus::dbus")
|
|
|
|
self.cpp_info.components["pulse-simple"].set_property("pkg_config_name", "libpulse-simple")
|
|
self.cpp_info.components["pulse-simple"].libs = ["pulse-simple"]
|
|
self.cpp_info.components["pulse-simple"].defines.append("_REENTRANT")
|
|
self.cpp_info.components["pulse-simple"].requires = ["pulse"]
|
|
|
|
if self.options.with_glib:
|
|
self.cpp_info.components["pulse-mainloop-glib"].set_property("pkg_config_name", "libpulse-mainloop-glib")
|
|
self.cpp_info.components["pulse-mainloop-glib"].libs = ["pulse-mainloop-glib"]
|
|
self.cpp_info.components["pulse-mainloop-glib"].defines.append("_REENTRANT")
|
|
self.cpp_info.components["pulse-mainloop-glib"].requires = ["pulse", "glib::glib-2.0"]
|
|
|
|
# FIXME: add cmake generators when conan can generate PULSEAUDIO_INCLUDE_DIR PULSEAUDIO_LIBRARY vars
|