diff options
author | Dimitris Zlatanidis <d.zlatanidis@gmail.com> | 2015-11-09 17:42:22 +0200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-11-14 07:07:27 +0700 |
commit | 82dbb60581e98af69d3db0d18816198d774464a5 (patch) | |
tree | a6b8387f074e7dae68aba478c5043c694600fc83 | |
parent | 412804e2877c36028d1e2bce9d6e91558c0fc075 (diff) |
network/otter: Fix font size.
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
-rw-r--r-- | network/otter/otter.SlackBuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/network/otter/otter.SlackBuild b/network/otter/otter.SlackBuild index 209d39b71e8c..0aa18bbb1a1b 100644 --- a/network/otter/otter.SlackBuild +++ b/network/otter/otter.SlackBuild @@ -25,7 +25,7 @@ SRCNAM=otter-browser PRGNAM=$(echo $SRCNAM | cut -c1-5) VERSION=${VERSION:-0.9.07} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -70,6 +70,9 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +# Fix font size for non-OpenDesktop window managers +export QT_STYLE_OVERRIDE=gtk + mkdir -p build cd build cmake \ |