#!/bin/bash
# This was done to combine the extensions into one and polish them up.

WORK=/tmp/gtkdev516584
LIST=/tmp/gtk2-dev.list




if [ -e "$WORK" ]; then
rm -r "$WORK"
fi
mkdir "$WORK"

mkdir -p "$LOC"/usr/local/share
tar xzvf atk-1.23.5-devs.tcel -C "$WORK"
tar xzvf cairo-1.6.4-devs.tcel -C "$WORK"
tar xzvf gtk-2.12.11-devs.tcel -C "$WORK"
tar xzvf pango-1.21.3-devs.tcel -C "$WORK"
tar xzvf pixman-0.11.8-devs.tcel -C "$WORK"
#cd "$WORK"
#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

cd "$WORK"
find . -not -type d > "$LIST"
tar -T "$LIST" -czvf /home/tc/gtk+-2.12.11-devs.tcel










