From 0c6a06dd00eb16c4b576a4e5ec28b6a655d3b48f Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 30 Jan 2023 16:16:07 +0000 Subject: [PATCH] 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 Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 6cf1a2654ce561bb20871d40d1878fd63c1f1284) Signed-off-by: Martin Renvoize --- Makefile.PL | 3 +++ build-resources.PL | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100755 build-resources.PL diff --git a/Makefile.PL b/Makefile.PL index f4f48d52d0..458e7f271c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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'} }, ( diff --git a/build-resources.PL b/build-resources.PL new file mode 100755 index 0000000000..456161ece7 --- /dev/null +++ b/build-resources.PL @@ -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 . +# + +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; -- 2.20.1