live-bootstrap/sysa/flex-2.5.11/flex-2.5.11.sh

24 lines
517 B
Bash
Raw Normal View History

2021-02-08 06:23:31 +00:00
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
#
# SPDX-License-Identifier: GPL-3.0-or-later
2021-01-28 18:53:44 +00:00
# When we rebuild flex it no longer needs patching
# and can use simplified makefile
src_prepare() {
default
2021-02-04 18:37:43 +00:00
2021-01-28 18:53:44 +00:00
touch config.h
2021-02-04 18:37:43 +00:00
rm parse.c parse.h scan.c skel.c
2021-01-28 18:53:44 +00:00
}
src_install() {
if test -d /lex; then
# Remove lex, later make install will symlink lex to flex
rm -rf /lex
rm -f "${PREFIX}/bin/lex"
rm -f "${PREFIX}/lib/libl.a"
fi
default
2021-01-28 18:53:44 +00:00
}