You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
517 B
23 lines
517 B
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu> |
|
# |
|
# SPDX-License-Identifier: GPL-3.0-or-later |
|
|
|
# When we rebuild flex it no longer needs patching |
|
# and can use simplified makefile |
|
src_prepare() { |
|
default |
|
|
|
touch config.h |
|
rm parse.c parse.h scan.c skel.c |
|
} |
|
|
|
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 |
|
}
|
|
|