mkqrc.sh

Sat, 11 May 2013 04:02:13 +0300

author
Santeri Piippo <crimsondusk64@gmail.com>
date
Sat, 11 May 2013 04:02:13 +0300
changeset 191
9bb6a17305ad
parent 174
963697b36118
child 206
c069e7b5f5f3
permissions
-rwxr-xr-x

Readded BFC red-green view, although determining inversion isn't always correct and it cannot handle CW-certified files...

#!/bin/bash

QRCFILE=ldforge.qrc
FILES=$(echo ./icons/*.* LICENSE)

printf "" > $QRCFILE

printf "<!DOCTYPE RCC>\n<RCC version=\"1.0\">\n<qresource>\n" >> $QRCFILE

# Make sure that whatever goes to QRC is added to the repo.
# I keep forgetting to do this myself.
for line in $(hg status $FILES |grep "?"); do
	if [ "$line" != "?" ]; then
		echo "hg add $line"
		hg add $line;
	fi
done

for f in $FILES; do
	printf "\t<file>$f</file>\n" >> $QRCFILE
done

printf "</qresource>\n</RCC>\n" >> $QRCFILE

mercurial