#!/bin/bash

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

cd /mnt/hda2/modplugtools/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

