mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-14 15:25:23 +01:00
17 lines
356 B
Bash
Executable file
17 lines
356 B
Bash
Executable file
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
src_prepare() {
|
|
default_src_prepare
|
|
|
|
rm perly.c perly.h
|
|
bison -d perly.y
|
|
mv perly.tab.c perly.c
|
|
mv perly.tab.h perly.h
|
|
|
|
for file in embed keywords opcode; do
|
|
rm ${file}.h
|
|
perl ${file}.pl
|
|
done
|
|
}
|