#!/bin/bash

. /usr/lib/frugalware/fwmakepkg

if [ "$1" == "--help" ]; then
	echo "files bigger than 500KB"
	exit 1
fi

cd ..

for i in `git ls-tree --name-only -r HEAD`
do
	if [ `stat -c "%s" $i` -gt 500000 ]; then
		echo $i
	fi
done
