Browse Source

add boost dependency

master
Alexandros Theodotou 11 months ago
parent
commit
bfd93ecd59
Signed by: alex
GPG Key ID: 022EAE42313D70F3
  1. 2
      arch/PKGBUILD.in
  2. 1
      debian/control.in
  3. 18
      flatpak/org.zrythm.Zrythm.json
  4. 1
      osx-brew/zrythm.rb.in
  5. 1
      rpm/zrythm.spec.in
  6. 1
      windows-msys/PKGBUILD.in

2
arch/PKGBUILD.in

@ -25,7 +25,7 @@ url="https://www.zrythm.org" @@ -25,7 +25,7 @@ url="https://www.zrythm.org"
options=('!strip')
license=('AGPL3')
depends=('curl' 'gtk4' 'lilv' 'libadwaita' 'libx11' 'jack' 'libsndfile'
'json-glib' 'libyaml' 'libsamplerate' 'guile' 'alsa-lib'
'boost' 'json-glib' 'libyaml' 'libsamplerate' 'guile' 'alsa-lib'
'fftw' 'graphviz' 'gtksourceview5' 'breeze-icons' 'zstd'
'rtmidi' 'rtaudio' 'rubberband' 'xdg-utils' 'sdl2' 'xxhash' 'vamp-plugin-sdk'
'wayland-protocols')

1
debian/control.in vendored

@ -6,6 +6,7 @@ Build-Depends: debhelper (>=9), @@ -6,6 +6,7 @@ Build-Depends: debhelper (>=9),
gettext,
guile-2.2-dev,
help2man,
libboost-dev,
libcurl4-gnutls-dev,
libjack-jackd2-dev | libjack-dev,
libsndfile1-dev (>= 1.0.25),

18
flatpak/org.zrythm.Zrythm.json

@ -381,6 +381,24 @@ @@ -381,6 +381,24 @@
}
]
},
{
"name": "boost",
"buildsystem": "simple",
"build-commands": [
"mkdir -p ${FLATPAK_DEST}/include",
"mv boost ${FLATPAK_DEST}/include"
],
"cleanup": [
"/include"
],
"sources": [
{
"type": "archive",
"url": "https://dl.bintray.com/boostorg/release/1.73.0/source/boost_1_73_0.tar.bz2",
"sha256": "4eb3b8d442b426dc35346235c8733b5ae35ba431690e38c6a8263dce9fcbb402"
}
]
},
{
"name": "zrythm",
"builddir": true,

1
osx-brew/zrythm.rb.in

@ -29,6 +29,7 @@ class Zrythm@TRIAL_INITIAL_UPPERCASE@ < Formula @@ -29,6 +29,7 @@ class Zrythm@TRIAL_INITIAL_UPPERCASE@ < Formula
depends_on "cmake" => :build
depends_on "gnu-sed" => :build
depends_on "sassc" => :build
depends_on "boost"
depends_on "curl"
depends_on "libyaml"
depends_on "guile"

1
rpm/zrythm.spec.in

@ -30,6 +30,7 @@ Source0: https://www.zrythm.org/releases/zrythm-%{version}.tar.gz @@ -30,6 +30,7 @@ Source0: https://www.zrythm.org/releases/zrythm-%{version}.tar.gz
BuildRequires: gcc-c++ gcc pkgconfig
BuildRequires: gtk4-devel
BuildRequires: python3
BuildRequires: boost-devel
BuildRequires: libcurl-devel
BuildRequires: libsndfile-devel
BuildRequires: libyaml-devel

1
windows-msys/PKGBUILD.in

@ -27,6 +27,7 @@ pkgrel=2 @@ -27,6 +27,7 @@ pkgrel=2
arch=('any')
pkgdesc='a highly automated and intuitive digital audio workstation (mingw-w64)'
depends=("${MINGW_PACKAGE_PREFIX}-gtk4"
"${MINGW_PACKAGE_PREFIX}-boost"
"${MINGW_PACKAGE_PREFIX}-libadwaita"
"${MINGW_PACKAGE_PREFIX}-cantarell-fonts"
"${MINGW_PACKAGE_PREFIX}-curl-winssl"

Loading…
Cancel
Save