summaryrefslogtreecommitdiffstats
path: root/kachelmann
diff options
context:
space:
mode:
authorroot <root@krebs>2011-08-06 00:36:40 +0200
committerroot <root@krebs>2011-08-06 00:36:40 +0200
commitd0a2cc1b54f789455a56e088c6a920b6dc491a38 (patch)
tree25b6bff61313d2ef770748440b5102aea5eb37a3 /kachelmann
parent2f896d02d13eab9d587a8dfd90b6300b1a338716 (diff)
Changed kachelmann to write its XML file to /tmp/kachelmann/weather.xml
Deleted Weather.xml Added a Makefile
Diffstat (limited to 'kachelmann')
-rw-r--r--kachelmann/Makefile5
-rwxr-xr-xkachelmann/conditions.pl4
2 files changed, 7 insertions, 2 deletions
diff --git a/kachelmann/Makefile b/kachelmann/Makefile
new file mode 100644
index 00000000..277a5421
--- /dev/null
+++ b/kachelmann/Makefile
@@ -0,0 +1,5 @@
+.PHONY: infect
+INSTALL_DIR = /root/bin
+infect:
+ mkdir -p /tmp/kachelmann/
+ cp kachelmann ${INSTALL_DIR}
diff --git a/kachelmann/conditions.pl b/kachelmann/conditions.pl
index 61c43330..6d8b5541 100755
--- a/kachelmann/conditions.pl
+++ b/kachelmann/conditions.pl
@@ -1,7 +1,7 @@
#!/usr/bin/perl
use XML::Simple;
-system("w3m -dump \"http://www.google.com/ig/api?weather=70327-stuttgart&hl=de\" > weather.xml");
+system("w3m -dump \"http://www.google.com/ig/api?weather=70327-stuttgart&hl=de\" > /tmp/kachelmann/weather.xml");
my $xml = new XML::Simple;
-my $data = $xml->XMLin("weather.xml");
+my $data = $xml->XMLin("/tmp/kachelmann/weather.xml");
my $sentence = "Die Wetterkondition ist: $data->{weather}->{current_conditions}->{condition}->{data}\n bei $data->{weather}->{current_conditions}->{temp_c}->{data} Grad Celsius\n";
system("espeak \"$sentence\"");