Meson is a build system focused on speed an ease of use, which helps speeding up the software development. This patch adds meson support along autotools. https://bugzilla.gnome.org/show_bug.cgi?id=785414
19 lines
352 B
Bash
Executable file
19 lines
352 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd @working_dir@
|
|
|
|
export FILES="@source_files@"
|
|
export DIR="@input_dir@"
|
|
|
|
@program@ &&
|
|
patch -p4 < @source_patch@ &&
|
|
git add @source_files@ &&
|
|
git commit -m "@source_message@"
|
|
|
|
export FILES="@resource_data@"
|
|
export DIR="@input_dir@"
|
|
|
|
@program@ &&
|
|
patch -p4 < @resource_patch@ &&
|
|
git add @resource_data@ &&
|
|
git commit -m "@resource_message@"
|