system/conky: LUA support is not enabled by default anymore.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
a3dd5a4576
commit
81412a04e6
|
@ -7,12 +7,13 @@ your root desktop or in it's own window. Conky has many built-in
|
||||||
objects, as well as the ability to execute programs and scripts, then
|
objects, as well as the ability to execute programs and scripts, then
|
||||||
display the output from stdout.
|
display the output from stdout.
|
||||||
|
|
||||||
For lua scripting engine support the required dependencies are:
|
To enable lua scripting engine support run the build with
|
||||||
lua, imlib2 and tolua++
|
LUA=yes ./conky.SlackBuild
|
||||||
|
|
||||||
|
The required dependencies for lua support are: lua, imlib2 and tolua++
|
||||||
|
|
||||||
All of the above requirements are available from slackbuilds.org
|
All of the above requirements are available from slackbuilds.org
|
||||||
|
|
||||||
To disable lua support run the build with
|
|
||||||
LUA=NO ./conky.SlackBuild
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
PRGNAM=conky
|
PRGNAM=conky
|
||||||
VERSION=1.8.0
|
VERSION=1.8.0
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-2}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
# Automatically determine the architecture we're building on:
|
# Automatically determine the architecture we're building on:
|
||||||
|
@ -24,6 +24,9 @@ TMP=${TMP:-/tmp/SBo}
|
||||||
PKG=$TMP/package-$PRGNAM
|
PKG=$TMP/package-$PRGNAM
|
||||||
OUTPUT=${OUTPUT:-/tmp}
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
|
# Pass LUA=yes if you want to build lua scripting engine support.
|
||||||
|
LUA=${LUA:-"NO"}
|
||||||
|
|
||||||
if [ "$ARCH" = "i486" ]; then
|
if [ "$ARCH" = "i486" ]; then
|
||||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||||
LBIDIRSUFFIX=""
|
LBIDIRSUFFIX=""
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
|-----handy-ruler------------------------------------------------------|
|
|-----handy-ruler------------------------------------------------------|
|
||||||
conky: conky (light-weight system monitor for X)
|
conky: conky (light-weight system monitor for X)
|
||||||
conky:
|
conky:
|
||||||
conky: Conky is a system monitor for X originally based on the torsmo code.
|
conky: Conky is a system monitor for X originally based on the torsmo code.
|
||||||
conky: Since it's original conception, Conky has changed a fair bit from
|
conky: Since it's original conception, Conky has changed a fair bit from
|
||||||
conky: it's predecessor. Conky can display just about anything, either on
|
conky: it's predecessor. Conky can display just about anything, either on
|
||||||
|
|
Loading…
Reference in New Issue