|
1 |
| -This is a wizard to make initial settings to a Raspberry Pi on first boot. |
2 |
| - |
3 |
| - |
4 | 1 | How to build
|
5 | 2 | ------------
|
6 | 3 |
|
7 | 4 | 1. Install dependencies
|
8 | 5 |
|
9 | 6 | The dependencies of any Debian project are listed in the "Build-Depends" section
|
10 |
| -of the file named "control" in the "debian" subdirectory of the project. |
11 |
| - |
12 |
| -If the project has already been released into apt, then the build dependencies |
13 |
| -can be automatically installed using the command "sudo apt build-dep <package-name>". |
14 |
| - |
15 |
| -2. Prepare project |
16 |
| - |
17 |
| -To create the "configure" file and prepare the project directory, use the command |
18 |
| -"./autogen.sh" in the top directory of the project. |
19 |
| - |
20 |
| -If this file is not present, then instead use the command "autoreconf -i -f" |
21 |
| -followed by the command "intltoolize -c --automake --force", both in the top directory |
22 |
| -of the project. |
| 7 | +of the file named "control" in the "debian" subdirectory of the project. Either |
| 8 | +install each of these manually by using "sudo apt install <dependency-name>", or, |
| 9 | +if the project has already been released into apt, the build dependencies can all |
| 10 | +be automatically installed using the command "sudo apt build-dep <package-name>". |
23 | 11 |
|
24 |
| -3. Configure |
| 12 | +2. Configure meson |
25 | 13 |
|
26 |
| -To configure the make system, use the command "./configure" in the top directory of |
27 |
| -the project. This will by default set the project for installation in the /usr/local tree, |
| 14 | +To configure the meson build system, use the command "meson setup builddir" |
| 15 | +in the top directory of the project. This will create a subdirectory "builddir", |
| 16 | +and by default set the project for installation in the /usr/local tree, |
28 | 17 | which will not overwrite a version which has been installed from apt.
|
29 | 18 |
|
30 |
| -If you wish to overwrite a preinstalled version in the /usr tree, supply the arguments |
31 |
| -"./configure --prefix=/usr --libdir=/usr/lib/<library-location>" to the configure command. |
| 19 | +If you wish to overwrite a preinstalled version in the /usr tree, use the command |
| 20 | +"meson setup builddir --prefix=/usr --libdir=/usr/lib/<library-location>". |
32 | 21 | On a 32-bit system, <library-location> should be "arm-linux-gnueabihf".
|
33 | 22 | On a 64-bit system, <library-location> should be "aarch64-linux-gnu".
|
34 | 23 |
|
35 |
| -4. Build |
| 24 | +3. Build |
36 | 25 |
|
37 |
| -To build the application, use the command "make" in the top directory of the project. |
| 26 | +To build the application, change to the "builddir" directory and use the |
| 27 | +command "meson compile". |
38 | 28 |
|
39 |
| -5. Install |
| 29 | +4. Install |
40 | 30 |
|
41 |
| -To install the application and all required data files, use the command "sudo make install" |
42 |
| -in the top directory of the project. |
| 31 | +To install the application and all required data files, change to the |
| 32 | +"builddir" directory and use the command "sudo meson install". |
0 commit comments