diff options
author | David Spencer <idlemoor@slackbuilds.org> | 2016-02-01 09:37:43 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-02-05 07:02:36 +0700 |
commit | 504d2cf4a83362597fab1ca53dbb2e639029e860 (patch) | |
tree | a965581158fb8d4940f80406082011bc707cad33 /multimedia/mpv/README | |
parent | 815ffb6cc60841f2e0ffe82c12d1c5ea690678a7 (diff) | |
download | slackbuilds-504d2cf4a83362597fab1ca53dbb2e639029e860.tar.gz |
multimedia/mpv: Remove NUMJOBS support.
The main issue was not supporting "-j", people can specify it
via BUILD_OPTS.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'multimedia/mpv/README')
-rw-r--r-- | multimedia/mpv/README | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/multimedia/mpv/README b/multimedia/mpv/README index 2bb44ef5b8..88fdc366f0 100644 --- a/multimedia/mpv/README +++ b/multimedia/mpv/README @@ -18,24 +18,13 @@ Dependencies are autodetected. Some optional dependencies are disabled by default and may be enabled (see BUILD_OPTS). Optional dependencies that are enabled by default may be disabled (see BUILD_OPTS). -NUMJOBS: -The default number of jobs to be run during the build process is set to 1; -To override, set NUMJOBS to your preference prior to or at build time. If -you run into suspected bugs with mpv, I recommend first building and installing -mpv with NUMJOBS set to the default of 1. e.g.: - -~# NUMJOBS=2 sh mpv.SlackBuild - -or, if you use fakeroot to build packages: - -~# fakeroot env NUMJOBS=2 sh mpv.SlackBuild - BUILD_OPTS: To override the default for build options, set the shell variable BUILD_OPTS prior to or at build time. For example, to enable cdda and openal, which are -disabled by default, you could use the following: +disabled by default, and to build with four jobs in parallel, you could use the +following: -~# BUILD_OPTS="--enable-cdda --enable-openal" sh mpv.SlackBuild +~# BUILD_OPTS="--enable-cdda --enable-openal --jobs=4" sh mpv.SlackBuild or, if you use fakeroot to build packages: |