1
0
mirror of https://github.com/FrodoVDR/channellogos.git synced 2023-10-10 11:36:54 +00:00

add uk logos

This commit is contained in:
2014-12-06 17:36:05 +01:00
parent a92319c07e
commit aaa9c3d0e8
10 changed files with 642 additions and 0 deletions

12
debian/changelog vendored
View File

@@ -1,3 +1,15 @@
skindesigner-logos (0.0.1.git20141202.2106-0frodo0~trusty) trusty; urgency=low
* New upstream snapshot (commit a92319c), build 0009
-- Frodo <frodo.vdr@gmx.net> Tue, 02 Dec 2014 22:07:07 +0100
skindesigner-logos (0.0.1.git20141202.2105-0frodo0~precise) precise; urgency=low
* New upstream snapshot (commit a92319c), build 0009
-- Frodo <frodo.vdr@gmx.net> Tue, 02 Dec 2014 22:06:11 +0100
skindesigner-logos (0.0.1.git20141202.2014-0frodo0~trusty) trusty; urgency=low
* New upstream snapshot (commit d4e1b32), build 0008

17
debian/check.pl vendored Executable file
View File

@@ -0,0 +1,17 @@
#!/usr/bin/perl
use strict;
use File::Basename;
foreach my $logo (glob("./logos/*")) {
if ( "$logo" =~ /.png$/ )
{
print "$logo"."\n";
my $name = $logo;
$name =~ s/.png/.svg/g;
if ( -f $name )
{
print "found: $name"."\n";
}
}
}