11 lines
367 B
Text
Executable file
11 lines
367 B
Text
Executable file
name=cleaning
|
|
|
|
build() {
|
|
strip --strip-debug /tools/lib/* || true
|
|
/usr/bin/strip --strip-unneeded /tools/bin/* /tools/sbin/* || true
|
|
rm -rf /tools/info /tools/man /tools/doc /tools/share/info /tools/share/man /tools/share/doc
|
|
find /tools/lib /tools/libexec -name \*.la -delete
|
|
|
|
strip --strip-debug /tools/lib32/* || true
|
|
find /tools/lib32 -name \*.la -delete
|
|
}
|