kitsunyan / pakku

Pacman wrapper with AUR support
GNU General Public License v3.0
130 stars 8 forks source link

strip binary #33

Closed juancarlospaco closed 5 years ago

juancarlospaco commented 5 years ago

Make install should strip binary:

$ du -h /usr/local/bin/pakku
860K    /usr/local/bin/pakku

$ sudo strip --strip-all /usr/local/bin/pakku

$ du -h /usr/local/bin/pakku
630K    /usr/local/bin/pakku

Same with other binaries if any.

kitsunyan commented 5 years ago

makepkg will strip binary if strip option is specified in OPTIONS in makepkg.conf (which is default).

juancarlospaco commented 5 years ago

this file

kitsunyan commented 5 years ago

I know which file is responsible for make install. Pakku is packaged using makepkg which will strip binaries itself.

juancarlospaco commented 5 years ago

Ok, then closing the issue.