FLAC_jll.flacMethod
flac(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of flac.

Example

flac() do exe
    run(`$exe $arguments`)
end
Julia 1.3
FLAC_jll.flacMethod
flac(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of flac. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(flac()) $arguments`)
Julia 1.6
FLAC_jll.is_availableFunction
is_available()

Return whether the artifact is available for the current platform.

FLAC_jll.metaflacMethod
metaflac(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of metaflac.

Example

metaflac() do exe
    run(`$exe $arguments`)
end
Julia 1.3
FLAC_jll.metaflacMethod
metaflac(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of metaflac. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(metaflac()) $arguments`)
Julia 1.6