libraries/libgdata: Make introspection and vapi yes by default

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Ozan Türkyılmaz 2022-07-17 12:27:38 +03:00 committed by Willy Sudiarto Raharjo
parent 1c009a03ef
commit 4c21fdb483
No known key found for this signature in database
GPG key ID: 3F617144D7238786
2 changed files with 5 additions and 5 deletions

View file

@ -5,8 +5,8 @@ support.
Below variables can be used to configure the build:
GTKDOC=yes : Builds gtkdocs
INSTROSPECTION=yes : Enables the introspection generation
INSTROSPECTION=no : Disable the introspection generation
TESTS=yes : Build & install test programs
VAPI=yes : Enable creation of vapi files
VAPI=no : Disable creation of vapi files
OAUTH=yes : Enable OAuth 1.0 support (deprecated)
MAN=yes : Generate man pages

View file

@ -26,14 +26,14 @@ cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=libgdata
VERSION=${VERSION:-0.18.1}
BUILD=${BUILD:-2}
BUILD=${BUILD:-3}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
TESTS=${TESTS:-no}
GTKDOC=${GTKDOC:-no}
INTROSPECTION=${INTROSPECTION:-no}
VAPI=${VAPI:-no}
INTROSPECTION=${INTROSPECTION:-yes}
VAPI=${VAPI:-yes}
OAUTH1=${OAUTH1=no}
MAN=${MAN:-no}