mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-11 05:45:23 +01:00
23 lines
358 B
Bash
Executable file
23 lines
358 B
Bash
Executable file
src_prepare() {
|
|
default_src_prepare
|
|
|
|
mv Makefile src/
|
|
touch src/config.h
|
|
rm src/parse.c src/parse.h src/scan.c src/skel.c
|
|
}
|
|
|
|
src_compile() {
|
|
cd src
|
|
default_src_compile
|
|
cd ..
|
|
}
|
|
|
|
src_install() {
|
|
cd src
|
|
default_src_install
|
|
cd ..
|
|
|
|
# Remove yacc, we won't need it any longer
|
|
rm ${PREFIX}/bin/yacc
|
|
rm /yaccpar
|
|
}
|