2019-09-28 00:17:56 +08:00
|
|
|
name=cleaning
|
2018-12-01 00:12:45 +08:00
|
|
|
|
2019-09-28 00:17:56 +08:00
|
|
|
build() {
|
|
|
|
strip --strip-debug /tools/lib/* || true
|
2021-05-04 08:20:54 +08:00
|
|
|
/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
|
2018-12-01 00:12:45 +08:00
|
|
|
|
2020-06-28 23:38:04 +08:00
|
|
|
strip --strip-debug /tools/lib32/* || true
|
|
|
|
find /tools/lib32 -name \*.la -delete
|
2019-09-28 00:17:56 +08:00
|
|
|
}
|