From e6122b9a5ec74972ef5ed106f69803544d1fd686 Mon Sep 17 00:00:00 2001 From: Slackhead <1039402+slackhead@users.noreply.github.com> Date: Thu, 9 Aug 2018 18:46:01 +0100 Subject: [PATCH 1/2] Add slackware installation instructions --- doc/install.asciidoc | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/doc/install.asciidoc b/doc/install.asciidoc index f5fccb32e..d9d8be2cc 100644 --- a/doc/install.asciidoc +++ b/doc/install.asciidoc @@ -222,6 +222,38 @@ There are prebuilt RPMs available at https://software.opensuse.org/download.html To use the QtWebEngine backend, install `libqt5-qtwebengine`. +On Slackware +------------ + +qutebrowser is available in the 3rd party repository at http://slackbuilds.org[slackbuilds.org] + +An easy way to install it is with sbopkg (frontend for slackbuilds.org) available at http://sbopkg.org[sbopkg.org] + +sbopkg can be run with a dialog screen interface, or via command line options. + +After installing the latest sbopkg package, choose your release version, and sync the repo. + +---- +sbopkg -V 14.2 +sbopkg -r +---- + +The pyPEG2 and MarkupSafe dependencies both need building for python3. You can either set PYTHON3=yes in the shell or set those as options in the dialog menu for each. + +Generate a queue file for qutebrowser and dependencies: + +---- +sqg -p qutebrowser +---- + +Then load the queue in the dialog queue menu or via: + +---- +PYTHON3=yes sbopkg -b qutebrowser +---- + +If you use the dialog screen you can deselect any already-installed packages that you don't need/want to rebuild before starting the build process. + On OpenBSD ---------- From 62d217389ec2ac9a95a3a245f73a98d6647d0225 Mon Sep 17 00:00:00 2001 From: Slackhead <1039402+slackhead@users.noreply.github.com> Date: Thu, 9 Aug 2018 18:52:15 +0100 Subject: [PATCH 2/2] Change -b to -i --- doc/install.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/install.asciidoc b/doc/install.asciidoc index d9d8be2cc..c8b6c2248 100644 --- a/doc/install.asciidoc +++ b/doc/install.asciidoc @@ -249,7 +249,7 @@ sqg -p qutebrowser Then load the queue in the dialog queue menu or via: ---- -PYTHON3=yes sbopkg -b qutebrowser +PYTHON3=yes sbopkg -i qutebrowser ---- If you use the dialog screen you can deselect any already-installed packages that you don't need/want to rebuild before starting the build process.