Browse Source

fix trial not building on macos

use_builds_script
Alexandros Theodotou 3 years ago
parent
commit
8591b73a2a
Signed by: alex
GPG Key ID: 022EAE42313D70F3
  1. 1
      osx-brew/make_bottle.sh.in
  2. 4
      osx-brew/meson.build
  3. 2
      osx-brew/zrythm.rb.in

1
osx-brew/make_bottle.sh.in

@ -19,6 +19,7 @@ formula_filename="`basename $formula_file`" @@ -19,6 +19,7 @@ formula_filename="`basename $formula_file`"
formula_name="${formula_filename%.*}"
# copy formula file to where it needs to be
cat $formula_file
cp $formula_file "$formula_dir/$formula_filename"
# copy the source tarball to the cache

4
osx-brew/meson.build

@ -20,6 +20,10 @@ osx_brew_conf.merge_from (global_conf) @@ -20,6 +20,10 @@ osx_brew_conf.merge_from (global_conf)
carla_bottle_ver = '0.1.3'
carla_bottle_filename = 'carla-git--' + carla_bottle_ver + '.catalina.bottle.tar.gz'
zrythm_bottle_filename = 'zrythm' + dash_trial + '--' + zrythm_pkg_ver + '.catalina.bottle.tar.gz'
osx_brew_conf.set (
'DASH_TRIAL', dash_trial)
osx_brew_conf.set (
'TRIAL_INITIAL_UPPERCASE', build_trial ? 'Trial' : '')
osx_brew_conf.set (
'ZRYTHM_BOTTLE_FILENAME', zrythm_bottle_filename)
osx_brew_conf.set (

2
osx-brew/zrythm.rb.in

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
class Zrythm@DASH_TRIAL@ < Formula
class Zrythm@TRIAL_INITIAL_UPPERCASE@ < Formula
desc "Digital audio workstation"
homepage "https://www.zrythm.org"
url "@ZRYTHM_ORIG_SRC_TARBALL_URL@"

Loading…
Cancel
Save