Bug 32609: (follow-up) Add build-resources.PL

This patch adds a trivial perl wrapper around the yarn build and calls
it from Makefile.PL.

I 'think' this is all we need to get packaging, dev and standard
installs happy with the lack of our compiled files in source.

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
(cherry picked from commit 6cf1a2654c)
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
Martin Renvoize 2023-01-30 16:16:07 +00:00
parent 40f782b131
commit 0c6a06dd00
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F
2 changed files with 41 additions and 0 deletions

View file

@ -692,6 +692,9 @@ my $pl_files = {
'fix-perl-path.PL' => [ # this script ensures the correct shebang line for the platform installed on...
'blib'
],
'build-resources.PL' => [
'blib'
],
};
push @{ $pl_files->{'rewrite-config.PL'} }, (

38
build-resources.PL Executable file
View file

@ -0,0 +1,38 @@
#!/usr/bin/perl
# This file is part of Koha.
#
# Koha is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# Koha is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Koha; if not, see <http://www.gnu.org/licenses>.
#
use Modern::Perl;
use ExtUtils::MakeMaker::Config;
=head1 NAME
build-resources.PL - helper for the Koha packager and installer
=head1 SYNOPSIS
perl build-resources.PL
=head1 DESCRIPTION
This helper script ensures that src JS and SCSS files are compiled for packaging.
=cut
my $command = "yarn build:prod";
system($command);
1;