-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
17f3185
commit a9e1f25
Showing
6 changed files
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
#! /bin/bash | ||
|
||
LOG="$HOME/DT40.log" | ||
LOG="$HOME/DT401.log" | ||
|
||
VM_NAME=ubuntu2204-DTcompile | ||
VM_SIZE=15G | ||
VM_IMAGE=22.04 | ||
DT_COMPILE_SCRIPT=DT400_compile.sh | ||
DT_COMPILE_SCRIPT=DT40_compile.sh | ||
_COMPILE=_compile.sh | ||
|
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,8 @@ workstation :-) | |
|
||
There are 2 ways to install Darktable: | ||
1. Darktable releases can be installed in a VM for trying it out. | ||
|
||
It is easy to build on your local machine, but trying out in a VM first is nice. | ||
|
||
2. Follow Git Master on your computer using the script for that. | ||
|
||
|
@@ -44,9 +46,9 @@ The compile script does the following: | |
* builds and install Darktable in the VM | ||
* starts Darktable to print the --version info in the VM | ||
|
||
The end result from running "darktable --version", is this: | ||
The end result from running "darktable --version" on the latest supported build, is: | ||
```` | ||
this is darktable 4.0.0 | ||
this is darktable 4.0.1 | ||
copyright (c) 2009-2022 johannes hanika | ||
[email protected] | ||
|
@@ -65,9 +67,9 @@ compile options: | |
```` | ||
|
||
# How to compile Darktable 4.0.0 for Ubuntu 22.04 in a VM | ||
# How to compile Darktable 4.0.1 for Ubuntu 22.04 in a VM | ||
git clone https://github.com/per2jensen/dt-on-ubuntu.git | ||
cd dt-on-ubuntu/22.04/DT400 | ||
cd dt-on-ubuntu/22.04/DT40 | ||
chmod u+x install_in_vm.sh | ||
./install_in_vm.sh | ||
|
||
|