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