# Copy all required headers (common for all platforms)
cp include/whisper.h ${header_path}
+ cp include/parakeet.h ${header_path}
cp ggml/include/ggml.h ${header_path}
cp ggml/include/ggml-alloc.h ${header_path}
cp ggml/include/ggml-backend.h ${header_path}
cat > ${module_path}module.modulemap << EOF
framework module whisper {
header "whisper.h"
+ header "parakeet.h"
header "ggml.h"
header "ggml-alloc.h"
header "ggml-backend.h"
local libs=(
"${base_dir}/${build_dir}/src/${release_dir}/libwhisper.a"
+ "${base_dir}/${build_dir}/src/${release_dir}/libparakeet.a"
"${base_dir}/${build_dir}/ggml/src/${release_dir}/libggml.a"
"${base_dir}/${build_dir}/ggml/src/${release_dir}/libggml-base.a"
"${base_dir}/${build_dir}/ggml/src/${release_dir}/libggml-cpu.a"