diff options
author | Ozan Türkyılmaz <ozan.turkyilmaz@gmail.com> | 2022-07-17 12:25:58 +0300 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-07-17 19:08:46 +0700 |
commit | da271b93cb45e9db1a01ee2604bf72eed2f12652 (patch) | |
tree | 18da17f6b53b1534a9e10d59bd5ae881ec27b7bc | |
parent | 0f1bdcdbe091bdd4c4a476e6b8019ff15409c39b (diff) |
libraries/gnome-autoar: Make introspection and vapi yes by default
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | libraries/gnome-autoar/README | 4 | ||||
-rw-r--r-- | libraries/gnome-autoar/gnome-autoar.SlackBuild | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/libraries/gnome-autoar/README b/libraries/gnome-autoar/README index e0b27ce032d7..faaa474f816e 100644 --- a/libraries/gnome-autoar/README +++ b/libraries/gnome-autoar/README @@ -13,7 +13,7 @@ are: preferences settings. Below variables can be used to configure the build: - INTROSPECTION=yes : Build introspection support + INTROSPECTION=no : Don't build introspection support GTKDOC=yes : Build GTK Doc reference TESTS=yes : Build tests - VAPI=yes : Build vala bindings + VAPI=no : Don't build vala bindings diff --git a/libraries/gnome-autoar/gnome-autoar.SlackBuild b/libraries/gnome-autoar/gnome-autoar.SlackBuild index cc5b4f50f2ec..dbc052267164 100644 --- a/libraries/gnome-autoar/gnome-autoar.SlackBuild +++ b/libraries/gnome-autoar/gnome-autoar.SlackBuild @@ -26,14 +26,14 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=gnome-autoar VERSION=${VERSION:-0.4.3} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} -INTROSPECTION=${INTROSPECTION:-no} +INTROSPECTION=${INTROSPECTION:-yes} GTKDOC=${GTKDOC:-no} TESTS=${TESTS:-no} -VAPI=${VAPI:-no} +VAPI=${VAPI:-yes} if [ "$INTROSPECTION" = "yes" ]; then INTROSPECTIONP="enabled" |