remove gtkrcify tool

git-svn-id: svn://localhost/ardour2/branches/3.0@8589 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-01-27 18:47:11 +00:00
parent 2f360574c3
commit 85e8be3fa4

View File

@ -1,23 +0,0 @@
#!/usr/bin/perl
%colors;
while (<>) {
if (/^#\@define/) {
@words = split;
$colors{$words[1]} = $words[2];
next;
} elsif (/\@COLOR_SCHEME\@/) {
$scheme_string="";
foreach $key (sort keys %colors) {
$scheme_string .= "A_$key:$colors{$key};"
}
chop $scheme_string;
s/\@COLOR_SCHEME\@/$scheme_string/;
print;
next;
} else {
print;
}
}