mirror of
https://github.com/HandBrake/HandBrake-docs.git
synced 2025-12-10 00:44:52 -06:00
docs: Update build instructions with correct git tag lookups
This commit is contained in:
parent
f582f7241c
commit
b49a635952
@ -32,6 +32,12 @@ Clone the HandBrake repository.
|
|||||||
|
|
||||||
git clone https://github.com/HandBrake/HandBrake.git && cd HandBrake
|
git clone https://github.com/HandBrake/HandBrake.git && cd HandBrake
|
||||||
|
|
||||||
|
List available tags in the HandBrake 1.10.x release series, and check out the most recent.
|
||||||
|
|
||||||
|
git tag --list | grep ^1\.10\.
|
||||||
|
git checkout refs/tags/$(git tag -l | grep -E '^1\.10\.[0-9]+$' | tail -n 1)
|
||||||
|
|
||||||
|
|
||||||
Build HandBrake. To enable support for Intel Quick Sync Video (FreeBSD only), append `--enable-qsv`. To build the command line interface only, disable the graphical interface by appending `--disable-gtk`.
|
Build HandBrake. To enable support for Intel Quick Sync Video (FreeBSD only), append `--enable-qsv`. To build the command line interface only, disable the graphical interface by appending `--disable-gtk`.
|
||||||
|
|
||||||
For FreeBSD
|
For FreeBSD
|
||||||
|
|||||||
@ -42,6 +42,11 @@ Clone the HandBrake repository.
|
|||||||
|
|
||||||
git clone https://github.com/HandBrake/HandBrake.git && cd HandBrake
|
git clone https://github.com/HandBrake/HandBrake.git && cd HandBrake
|
||||||
|
|
||||||
|
List available tags in the HandBrake 1.10.x release series, and check out the most recent.
|
||||||
|
|
||||||
|
git tag --list | grep ^1\.10\.
|
||||||
|
git checkout refs/tags/$(git tag -l | grep -E '^1\.10\.[0-9]+$' | tail -n 1)
|
||||||
|
|
||||||
Build HandBrake.
|
Build HandBrake.
|
||||||
|
|
||||||
./configure --launch-jobs=$(nproc) --launch
|
./configure --launch-jobs=$(nproc) --launch
|
||||||
|
|||||||
@ -53,6 +53,11 @@ Clone the HandBrake repository.
|
|||||||
|
|
||||||
git clone https://github.com/HandBrake/HandBrake.git && cd HandBrake
|
git clone https://github.com/HandBrake/HandBrake.git && cd HandBrake
|
||||||
|
|
||||||
|
List available tags in the HandBrake 1.10.x release series, and check out the most recent.
|
||||||
|
|
||||||
|
git tag --list | grep ^1\.10\.
|
||||||
|
git checkout refs/tags/$(git tag -l | grep -E '^1\.10\.[0-9]+$' | tail -n 1)
|
||||||
|
|
||||||
You may build and install the additional dependencies using the included script. Feel free to choose a different output path, if desired.
|
You may build and install the additional dependencies using the included script. Feel free to choose a different output path, if desired.
|
||||||
|
|
||||||
sudo scripts/mac-toolchain-build /usr/local
|
sudo scripts/mac-toolchain-build /usr/local
|
||||||
|
|||||||
@ -84,6 +84,11 @@ Clone the HandBrake repository.
|
|||||||
|
|
||||||
git clone https://github.com/HandBrake/HandBrake.git && cd HandBrake
|
git clone https://github.com/HandBrake/HandBrake.git && cd HandBrake
|
||||||
|
|
||||||
|
List available tags in the HandBrake 1.10.x release series, and check out the most recent.
|
||||||
|
|
||||||
|
git tag --list | grep ^1\.10\.
|
||||||
|
git checkout refs/tags/$(git tag -l | grep -E '^1\.10\.[0-9]+$' | tail -n 1)
|
||||||
|
|
||||||
Build the MinGW-w64 toolchain using the included script, where `username` is your user name. Feel free to choose a different output path, if desired.
|
Build the MinGW-w64 toolchain using the included script, where `username` is your user name. Feel free to choose a different output path, if desired.
|
||||||
|
|
||||||
scripts/mingw-w64-build x86_64 /home/username/toolchains/
|
scripts/mingw-w64-build x86_64 /home/username/toolchains/
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user