live-bootstrap/sysa/coreutils-6.10/coreutils-6.10.sh

28 lines
514 B
Bash
Raw Normal View History

2021-02-28 20:53:20 +00:00
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
default_src_prepare
mv lib/fnmatch.in.h lib/fnmatch.h
2021-02-28 20:53:20 +00:00
2021-03-13 19:32:19 +00:00
# Rebuild bison pre-generated file
rm lib/getdate.c
cd lib
bison --update getdate.y
bison getdate.y
mv getdate.tab.c getdate.c
cd ..
2021-03-27 20:38:51 +00:00
touch config.h
touch lib/configmake.h
2021-02-28 20:53:20 +00:00
}
src_compile() {
make -f Makefile
}
src_install() {
make -f Makefile install PREFIX="${PREFIX}"
}