diff options
author | Ozan Türkyılmaz <ozan.turkyilmaz@gmail.com> | 2022-07-17 12:28:31 +0300 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-07-17 19:08:46 +0700 |
commit | 119507de22ca2ddc25158541b0a61b6f034c26ff (patch) | |
tree | 19b83da150ea18441b36c49757b32ac55c7cf0eb | |
parent | 4c21fdb4832232ee1801b57f090bf2d142a93e68 (diff) | |
download | slackbuilds-119507de22ca2ddc25158541b0a61b6f034c26ff.tar.gz |
libraries/libgweather4: Make introspection and vapi yes by default
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | libraries/libgweather4/README | 4 | ||||
-rw-r--r-- | libraries/libgweather4/libgweather4.SlackBuild | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/libraries/libgweather4/README b/libraries/libgweather4/README index f28faca824..5bc6021e80 100644 --- a/libraries/libgweather4/README +++ b/libraries/libgweather4/README @@ -7,8 +7,8 @@ installed together with libgweather also avaiable in SBo. Below variables can be used to configure the build GTKDOC=yes : Whether to generate the API reference Requires gi-docgen and enabling INTROSPECTION - INTROSPECTION=yes : Whether to generate introspection data - VALA=yes : Install vala bindings + INTROSPECTION=no : Whether to generate introspection data + VALA=no : Don't install vala bindings VALA requires enabling INTROSPECTION TESTS=yes : Whether to build the tests and tools OWNAPIKEY=APIKEY : Specify an API key for OpenWeatherMap diff --git a/libraries/libgweather4/libgweather4.SlackBuild b/libraries/libgweather4/libgweather4.SlackBuild index e3626c566b..51d8400b10 100644 --- a/libraries/libgweather4/libgweather4.SlackBuild +++ b/libraries/libgweather4/libgweather4.SlackBuild @@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=libgweather4 VERSION=${VERSION:-4.0.0} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -36,9 +36,9 @@ PKGTYPE=${PKGTYPE:-tgz} PRGNAM1=libgweather GTKDOC=${GTKDOC:-no} -INTROSPECTION=${INTROSPECTION:-no} +INTROSPECTION=${INTROSPECTION:-yes} TESTS=${TESTS:-no} -VALA=${VALA:-no} +VALA=${VALA:-yes} OWNAPIKEY=${OWNAPIKEY:-no} if [ "$GTKDOC" = "yes" ]; then |