#!/bin/bash

tar xvf atk-1.32.0.tar.xz
cd atk-1.32.0
./configure --prefix=/usr/local
make
make install DESTDIR=/mnt/hda2/atk/pkg

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


