File: rebuild-defs.sh

package info (click to toggle)
telepathy-farstream 0.4.0-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,184 kB
  • sloc: sh: 11,106; ansic: 9,464; python: 8,213; makefile: 239
file content (18 lines) | stat: -rwxr-xr-x 319 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

HEADERS=" \
    telepathy-farstream.h \
    channel.h \
    content.h \
    stream.h"

srcdir=../telepathy-farstream/

output=pytpfarstream.defs
filter=pytpfarstream-filter.defs

cat ${filter} > ${output}

for h in $HEADERS; do
    python codegen/h2def.py --defsfilter=${filter} ${srcdir}/$h >> $output
done