You are not logged in.
Pages: 1
packages in opt directory do not get stripped during the makepkg process, to fix that I added opt/$pkgname to makepkg script for stripping, so it looks like this:
# strip binaries
cd $startdir
msg "==> Stripping debugging symbols from libraries..."
find pkg/{,usr,usr/local,opt/$pkgname}/lib -type f -exec /usr/bin/strip --strip-debug '{}' ';' 2>&1
msg "==> Stripping symbols from binaries..."
find pkg/{,usr,usr/local,opt/$pkgname}/{bin,sbin} -type f -exec /usr/bin/strip '{}' ';' 2>&1
I used it on phoenix, but it also can be useful for openoffice, kde, gnome, qt, mozilla and such.
Rouslan
Offline
Hmm... good point. I'll fix that up for makepkg 2.3
Offline
Pages: 1