Skip to content

Commit 5c87c08

Browse files
committed
Enmeson
1 parent 1d81fdf commit 5c87c08

16 files changed

+62
-511
lines changed

Makefile.am

-12
This file was deleted.

README

+16-26
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,32 @@
1-
This is a wizard to make initial settings to a Raspberry Pi on first boot.
2-
3-
41
How to build
52
------------
63

74
1. Install dependencies
85

96
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>".
2311

24-
3. Configure
12+
2. Configure meson
2513

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,
2817
which will not overwrite a version which has been installed from apt.
2918

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>".
3221
On a 32-bit system, <library-location> should be "arm-linux-gnueabihf".
3322
On a 64-bit system, <library-location> should be "aarch64-linux-gnu".
3423

35-
4. Build
24+
3. Build
3625

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".
3828

39-
5. Install
29+
4. Install
4030

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".

autogen.sh

-6
This file was deleted.

configure.ac

-197
This file was deleted.

data/Makefile.am

-10
This file was deleted.
File renamed without changes.

data/meson.build

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
install_data('piwiz.ui', install_dir: resource_dir)
2+
install_data('raspberry-pi-logo.png', install_dir: resource_dir)
3+
install_data('srprompt.wav', install_dir: resource_dir)
4+
install_data('hdmi-audio-select', install_dir: bin_dir)
5+
install_data('10-piwiz.rules', install_dir: polkit_dir)

debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
piwiz (0.88) bookworm; urgency=medium
2+
3+
* Use meson
4+
5+
-- Simon Long <[email protected]> Wed, 19 Mar 2025 10:57:38 +0000
6+
17
piwiz (0.87) bookworm; urgency=medium
28

39
* Be more strict about PkTask vs PkClient, because trixie cares...

debian/piwiz.install

-2
This file was deleted.

meson.build

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
project ('piwiz','c')
2+
3+
share_dir = join_paths(get_option('prefix'), 'share')
4+
bin_dir = join_paths(get_option('prefix'), 'bin')
5+
polkit_dir = join_paths(share_dir, 'polkit-1', 'rules.d')
6+
resource_dir = join_paths(share_dir, meson.project_name())
7+
desktop_dir = join_paths(share_dir, 'applications')
8+
9+
i18n = import('i18n')
10+
11+
add_project_arguments('-DPACKAGE_LOCALE_DIR="' + share_dir + '/locale"', language : 'c' )
12+
add_project_link_arguments('-lcrypt', language : 'c' )
13+
14+
subdir('po')
15+
subdir('src')
16+
subdir('data')

0 commit comments

Comments
 (0)