File: pango_generate_docs.sh

package info (click to toggle)
pangomm 2.46.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,412 kB
  • sloc: xml: 13,269; cpp: 119; makefile: 89; sh: 52; python: 6
file content (17 lines) | stat: -rwxr-xr-x 424 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

# The script assumes that it resides in the tools/gen_scripts/ directory and
# the XML file will be placed in pango/src.

source "$(dirname "$0")/init_generate.sh"

out_dir="$root_dir/pango/src"

params="--with-properties --no-recursion"
for dir in "$source_prefix"/pango "$build_prefix"/pango; do
  if [ -d "$dir" ]; then
    params="$params -s $dir"
  fi
done

"$gen_docs" $params > "$out_dir/pango_docs.xml"