mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-24 20:16:32 +01:00
Perl 5.005_03
This commit is contained in:
parent
7e9054570e
commit
4276dfee1d
11 changed files with 160 additions and 5 deletions
30
sysa/perl5.005_03/perl5.005_03.sh
Executable file
30
sysa/perl5.005_03/perl5.005_03.sh
Executable file
|
|
@ -0,0 +1,30 @@
|
|||
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
src_prepare() {
|
||||
default_src_prepare
|
||||
|
||||
# Regenerate bison files
|
||||
rm perly.c perly.h
|
||||
bison -d perly.y
|
||||
mv perly.tab.c perly.c
|
||||
mv perly.tab.h perly.h
|
||||
|
||||
# Regenerate other prebuilt header files
|
||||
for file in embed keywords opcode; do
|
||||
rm ${file}.h
|
||||
perl ${file}.pl
|
||||
done
|
||||
rm regnodes.h
|
||||
perl regcomp.pl
|
||||
rm byterun.h byterun.c
|
||||
perl bytecode.pl
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default_src_install
|
||||
|
||||
# Remove old perl
|
||||
rm -rf "${PREFIX}"/lib/perl5/5.004_05
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue