summaryrefslogtreecommitdiffstats
path: root/kachelmann
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2011-08-20 22:58:13 +0200
committermakefu <github@syntax-fehler.de>2011-08-20 22:58:13 +0200
commit06aa69e990cb99cb0d5cc0750ee22c227eaf3f4a (patch)
tree94c39388cee1e09a4ca586ce4a08ea72ebc9c05b /kachelmann
parentf149191a3ddf07c8d9efc5fc686ef3ce45ac1c01 (diff)
kachelmann: update Makefile/wetter
wetter is the command line client for kachelmann Makefile now creates symlinks
Diffstat (limited to 'kachelmann')
-rw-r--r--kachelmann/Makefile11
-rwxr-xr-xkachelmann/wetter6
2 files changed, 11 insertions, 6 deletions
diff --git a/kachelmann/Makefile b/kachelmann/Makefile
index 7fa3ec2d..3343d941 100644
--- a/kachelmann/Makefile
+++ b/kachelmann/Makefile
@@ -1,8 +1,7 @@
.PHONY: infect
-INSTALL_DIR = /root/bin/
-infect:
- mkdir -p /tmp/kachelmann/
- cp conditions ${INSTALL_DIR}
- mv ${INSTALL_DIR}conditions ${INSTALL_DIR}kachelmann
- chmod +x ${INSTALL_DIR}kachelmann
+install:
+ # punani -Ei w3m php php-xml-simple
+ ln -s $$PWD/conditions ../bin/conditions
+ ln -s $$PWD/wetter ../bin/wetter
+ ln -s ${INSTALL_DIR}conditions ${INSTALL_DIR}kachelmann
diff --git a/kachelmann/wetter b/kachelmann/wetter
new file mode 100755
index 00000000..957e13e2
--- /dev/null
+++ b/kachelmann/wetter
@@ -0,0 +1,6 @@
+#!/usr/bin/perl
+use XML::Simple;
+my $result = `w3m -dump "http://www.google.com/ig/api?weather=70327-stuttgart&hl=de"`;
+my $xml = new XML::Simple;
+my $data = $xml->XMLin($result);
+print ("$data->{weather}->{current_conditions}->{condition}->{data} bei $data->{weather}->{current_conditions}->{temp_c}->{data} Grad Zelsius\n");