#!/bin/bash



tar xvf libmodplug-0.8.8.1.tar.gz
cd libmodplug-0.8.8.1
./configure --prefix=/usr/local
make
make install DESTDIR=/mnt/hda2/libmodplug/pkg

cd /mnt/hda2/libmodplug/pkg

find . | xargs file | grep "executable" | grep ELF | grep "not stripped" | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "shared object" | grep ELF | grep "not stripped" | cut -f 1 -d : | xargs strip -g 2> /dev/null


