diff --git a/arch/PKGBUILD.in b/arch/PKGBUILD.in index 6fe33ac..eb7ddaa 100644 --- a/arch/PKGBUILD.in +++ b/arch/PKGBUILD.in @@ -7,7 +7,7 @@ arch=('x86_64' 'i686') url="https://www.zrythm.org" options=('!strip') license=('AGPL3') -depends=('gtk3' 'lilv' 'libx11' 'jack' 'libsndfile' +depends=('curl' 'gtk3' 'lilv' 'libx11' 'jack' 'libsndfile' 'libyaml' 'libsamplerate' 'guile' 'gtksourceview4' 'alsa-lib' 'fftw' 'graphviz' 'rtmidi' 'rtaudio' 'breeze-icons' 'zstd' 'rubberband' 'xdg-utils' 'sdl2') @@ -34,6 +34,7 @@ build() { -Dlsp_dsp=enabled -Dstatic_lsp_dsp=true \ -Dfallback_version=@ZRYTHM_PKG_VERSION@ \ -Dtrial_ver=@TRIAL_TRUE_FALSE@ \ + -Dphone_home=enabled \ -Dinstaller_ver=true \ -Dcarla_binaries_dir=@CARLA_FULL_BINS_PATH@ ninja -C build diff --git a/debian/control.in b/debian/control.in index 69f5079..dd1a48d 100644 --- a/debian/control.in +++ b/debian/control.in @@ -6,6 +6,7 @@ Build-Depends: debhelper (>=9), gettext, guile-2.2-dev, help2man, + libcurl4-gnutls-dev, libgtk-3-dev (>= 3.22), libjack-jackd2-dev | libjack-dev, libsndfile1-dev (>= 1.0.25), diff --git a/debian/rules.in b/debian/rules.in index c95fd9f..3f3ce9d 100644 --- a/debian/rules.in +++ b/debian/rules.in @@ -17,6 +17,7 @@ override_dh_auto_configure: -Drtaudio=auto -Drtmidi=auto -Dguile=enabled \ -Dcarla=enabled -Dgraphviz=enabled \ -Dtrial_ver=@TRIAL_TRUE_FALSE@ \ + -Dphone_home=enabled \ -Dinstaller_ver=true \ -Dcarla_binaries_dir=@CARLA_FULL_BINS_PATH@ diff --git a/osx-brew/zrythm.rb.in b/osx-brew/zrythm.rb.in index ac59a37..c5c2701 100644 --- a/osx-brew/zrythm.rb.in +++ b/osx-brew/zrythm.rb.in @@ -10,6 +10,7 @@ class Zrythm@TRIAL_INITIAL_UPPERCASE@ < Formula depends_on "pkg-config" => :build depends_on "help2man" => :build depends_on "cmake" => :build + depends_on "curl" depends_on "libyaml" depends_on "gtk+3" depends_on "guile" @@ -41,6 +42,7 @@ class Zrythm@TRIAL_INITIAL_UPPERCASE@ < Formula "-Dmanpage=false", # TODO enable "-Dstatic_deps=false", + "-Dphone_home=enabled", "-Dinstaller_ver=true", ".." system "ninja", "-v" diff --git a/rpm/zrythm.spec.in b/rpm/zrythm.spec.in index 185f7a6..20cb2c7 100644 --- a/rpm/zrythm.spec.in +++ b/rpm/zrythm.spec.in @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Alexandros Theodotou +# Copyright (C) 2019-2021 Alexandros Theodotou # # Copying and distribution of this file, with or without modification, # are permitted in any medium without royalty provided the copyright @@ -17,6 +17,7 @@ Source0: https://www.zrythm.org/releases/zrythm-%{version}.tar.gz BuildRequires: gcc-c++ gcc pkgconfig BuildRequires: gtk3-devel >= 3.24 BuildRequires: python3 +BuildRequires: libcurl-devel BuildRequires: libsndfile-devel BuildRequires: libyaml-devel BuildRequires: libsamplerate-devel @@ -28,6 +29,7 @@ BuildRequires: portaudio-devel BuildRequires: help2man BuildRequires: SDL2-devel BuildRequires: graphviz-devel +Requires: libcurl Requires: ladspa Requires: lv2 Requires: xdg-utils @@ -98,6 +100,7 @@ PKG_CONFIG_PATH=@LIBRARY_PKG_CONFIG_PATH@:@CARLA_PKG_CONFIG_PATH@ \ -Dtrial_ver=@TRIAL_TRUE_FALSE@ -Dcarla=enabled \ -Dgraphviz=enabled -Dlsp_dsp=enabled \ -Dstatic_lsp_dsp=true -Dfallback_version=@ZRYTHM_PKG_VERSION@ \ + -Dphone_home=enabled \ -Dinstaller_ver=true \ -Dcarla_binaries_dir=@CARLA_FULL_BINS_PATH@ ninja -C build diff --git a/windows-msys/PKGBUILD.in b/windows-msys/PKGBUILD.in index da46413..bd1c44c 100644 --- a/windows-msys/PKGBUILD.in +++ b/windows-msys/PKGBUILD.in @@ -61,6 +61,7 @@ build() { -Djack=enabled \ -Dguile=disabled \ -Dfallback_version=@ZRYTHM_PKG_VERSION@ \ + -Dphone_home=enabled \ -Dmanpage=false \ -Dtrial_ver=@TRIAL_TRUE_FALSE@ \ -Dinstaller_ver=true -Dcarla=enabled \