Browse Source

sndfile is no longer a dependency

Signed-off-by: falkTX <falktx@falktx.com>
tags/v1.9.22
falkTX 3 years ago
parent
commit
c69d6097c2
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 4 additions and 10 deletions
  1. +4
    -4
      .cirrus.yml
  2. +0
    -6
      wscript

+ 4
- 4
.cirrus.yml View File

@@ -14,14 +14,14 @@ task:
matrix:
- name: FreeBSD Minimal Build
dependencies_script:
- pkg install -y pkgconf python3 libsndfile libsamplerate libsysinfo readline expat
- pkg install -y pkgconf python3 libsamplerate libsysinfo readline expat
config_script:
- python3 ./waf configure --celt=no --sndfile=yes --samplerate=yes --alsa=no --classic --readline=yes --opus=no --example-tools=no --prefix /Install --pkgconfigdir libdata/pkgconfig
- python3 ./waf configure --celt=no --samplerate=yes --alsa=no --classic --readline=yes --opus=no --example-tools=no --prefix /Install --pkgconfigdir libdata/pkgconfig
- name: FreeBSD All Options
dependencies_script:
- pkg install -y pkgconf python3 libsndfile libsamplerate libsysinfo readline alsa-lib dbus expat opus
- pkg install -y pkgconf python3 libsamplerate libsysinfo readline alsa-lib dbus expat opus
config_script:
- python3 ./waf configure --celt=no --sndfile=yes --samplerate=yes --alsa=yes --dbus --classic --autostart=dbus --readline=yes --opus=yes --prefix /Install --pkgconfigdir libdata/pkgconfig
- python3 ./waf configure --celt=no --samplerate=yes --alsa=yes --dbus --classic --autostart=dbus --readline=yes --opus=yes --prefix /Install --pkgconfigdir libdata/pkgconfig

build_script:
- python3 ./waf


+ 0
- 6
wscript View File

@@ -191,12 +191,6 @@ def options(opt):
samplerate.check_cfg(
package='samplerate',
args='--cflags --libs')
sndfile = opt.add_auto_option(
'sndfile',
help='Build with libsndfile')
sndfile.check_cfg(
package='sndfile',
args='--cflags --libs')
readline = opt.add_auto_option(
'readline',
help='Build with readline')


Loading…
Cancel
Save