libraries/geocode-glib: Fix typo in the SlackBuild and README.

Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Ozan Türkyılmaz 2022-05-29 22:45:02 +03:00 committed by Willy Sudiarto Raharjo
parent c2e1efd359
commit 48fd1a96c9
No known key found for this signature in database
GPG key ID: 3F617144D7238786
2 changed files with 7 additions and 7 deletions

View file

@ -6,5 +6,5 @@ results and to avoid unnecessary server load.
Below variables can be used to configure the build:
GTKDOC=yes : Builds gtkdocs
INSTROSPECTION=yes : Enables the introspection generation
INTROSPECTION=yes : Enables the introspection generation
TESTS=yes : Build & install test programs

View file

@ -26,12 +26,12 @@ cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=geocode-glib
VERSION=${VERSION:-3.26.2}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
GTKDOC=${GTKDOC:-no}
INSTROSPECTION=${INSTROSPECTION:-no}
INTROSPECTION=${INTROSPECTION:-no}
TESTS=${TESTS:-no}
if [ "$GTKDOC" = "yes" ]; then
@ -40,10 +40,10 @@ else
GTKDOCP="false"
fi
if [ "$INSTROSPECTION" = "yes" ]; then
INSTROSPECTIONP="true"
if [ "$INTROSPECTION" = "yes" ]; then
INTROSPECTIONP="true"
else
INSTROSPECTIONP="false"
INTROSPECTIONP="false"
fi
if [ "$TESTS" = "yes" ]; then
@ -115,7 +115,7 @@ cd build
--prefix=/usr \
--sysconfdir=/etc \
-Dstrip=true \
-Denable-introspection="$INSTROSPECTIONP" \
-Denable-introspection="$INTROSPECTIONP" \
-Denable-gtk-doc="$GTKDOCP" \
-Denable-installed-tests="$TESTSP"
"${NINJA:=ninja}"