Improve build instructions in README.md

This commit is contained in:
Martchus 2021-02-07 15:36:24 +01:00
parent 9fbb375924
commit 89a85184c3
1 changed files with 9 additions and 1 deletions

View File

@ -333,15 +333,23 @@ When enabled, the following additional dependencies are required (only at build-
git clone https://github.com/Martchus/tageditor.git git clone https://github.com/Martchus/tageditor.git
git clone https://github.com/Martchus/subdirs.git git clone https://github.com/Martchus/subdirs.git
``` ```
2. Build and install everything in one step: 2. Configure the build
``` ```
cd $BUILD_DIR cd $BUILD_DIR
cmake \ cmake \
-DCMAKE_BUILD_TYPE=Release \ -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX="/install/prefix" \ -DCMAKE_INSTALL_PREFIX="/install/prefix" \
$SOURCES/subdirs/tageditor $SOURCES/subdirs/tageditor
```
* Replace `/install/prefix` with the directory where you want to install.
3. Build and install everything in one step:
```
cd $BUILD_DIR
make install -j$(nproc) make install -j$(nproc)
``` ```
* If the install directory is not writable, do **not** conduct the build as root. Instead, set `DESTDIR` to a
writable location (e.g. `make DESTDIR="temporary/install/dir" install …`) and move the files from there to
the desired location afterwards.
## TODOs ## TODOs
* Support more formats (JPEG/EXIF, PDF metadata, Theora in Ogg, ...) * Support more formats (JPEG/EXIF, PDF metadata, Theora in Ogg, ...)