blob: b1614761fea60fc96bcff5d715261f43f2558826 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
python `pkg-config pygtk-2.0 --variable=codegendir`/h2def.py \
./json-glib/*.h \
> json-glib.defs.new
# Remove gtypes from the enums
./fix.pl json-glib.defs.new > json-glib.defs
rm json-glib.defs.new
# Add the BeagleHit, BeagleProperty and BeagleTimestamp pointers
|