blob: 8e23f95e65a79c230a2b4180ea7d5177b9fb5373 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
PKG_NAME="indicator-applet"
which gnome-autogen.sh || {
echo "You need gnome-common from GNOME SVN"
exit 1
}
USE_GNOME2_MACROS=1 \
USE_COMMON_DOC_BUILD=yes \
gnome-autogen.sh --enable-gtk-doc
|