mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
11 lines
197 B
Bash
11 lines
197 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
set -eux
|
||
|
|
||
|
filename=${1}
|
||
|
output_dir=${2}
|
||
|
module=$(basename ${filename} | cut -f1,2 -d'.')
|
||
|
|
||
|
mkdir -p ${output_dir}
|
||
|
abidw -o ${output_dir}/${module}.abi --drop-private-types ${filename}
|