------- Original Message -------
On Sunday, April 16th, 2023 at 10:36 AM, Rich Shepard
<[email protected]> wrote:
> On Sun, 16 Apr 2023, Ben Koenig wrote:
>
> > > I'm stuck at the first command:
> > > $ mason.build
> > > -bash: mason.build: command not found
>
> > Run the command provided in their README.
> > $ meson build
>
>
> Ben,
>
> Isn't that what I did with bash telling me the command's not found?
>
> Now, combining the first two lines from the README's build and install
> section I get this result:
> $ sh meson.build
> meson.build: line 1: syntax error near unexpected token
> `'pulseaudio-equalizer-ladspa',' meson.build: line 1:`
> project('pulseaudio-equalizer-ladspa','
>
> Regards,
>
> Rich
As mentioned in their instructions, you run the meson command with the build
argument.
$ meson build
That is 'meson' then a SPACE then 'build'. They didn't tell you to run
meson.build, so why are you executing the file manually? Did you just assume
that they made a mistake?
-Ben