mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
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:
parent
c2e1efd359
commit
48fd1a96c9
2 changed files with 7 additions and 7 deletions
|
@ -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
|
||||
|
|
|
@ -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}"
|
||||
|
|
Loading…
Reference in a new issue