summaryrefslogtreecommitdiff
path: root/Makefile
blob: 4243146a4cacf0714d6d2053a7e10b65eec2c244 (plain)
  1. infiles := $(wildcard data/*.ttl data/*/*.ttl)
  2. turtlefiles := $(infiles:data/%.ttl=build/%/index.ttl)
  3. textfiles = $(turtlefiles:%.ttl=%.txt)
  4. rdfxmlfiles = $(turtlefiles:%.ttl=%.rdf)
  5. # TODO: resolve event:Event with prog:Programme being foaf:primaryTopic of <>
  6. htmlprogrammefiles = \
  7. build/2011/cambridge/index.html \
  8. build/2011/banjaluka/index.html \
  9. build/2011/asia/index.html \
  10. build/2014/europe/index.html \
  11. build/2014/bruxelles-05/index.html \
  12. build/2014/bruxelles-05-2/index.html \
  13. build/2014/bruxelles-07/index.html \
  14. build/2014/europe-08/index.html \
  15. build/2015/brussels-03/index.html \
  16. build/2015/peru/index.html \
  17. build/2015/heidelberg/index.html
  18. htmlfiles = $(htmlprogrammefiles)
  19. getbase = $(shell perl -ne '/^\@base\s+<(http.+)>/ and print $$1 and exit;' "$1")
  20. all: $(textfiles) $(rdfxmlfiles) $(htmlfiles)
  21. clean:
  22. rm -rf build
  23. $(turtlefiles): build/%/index.ttl : data/%.ttl
  24. mkdir -p $(dir $@)
  25. cp $< $@
  26. # $(eval base = $(call getbase, $<))
  27. # rapper $(base:%=-I "%") -i turtle -o turtle "$<" > "$@"
  28. # perl -i -pe 's/ {4}/\t/g' "$@"
  29. $(textfiles): %.txt : %.ttl
  30. ln -fs $(notdir $<) $@
  31. $(rdfxmlfiles): %.rdf : %.ttl
  32. $(eval base = $(call getbase, $<))
  33. rapper $(base:%=-I "%") -i turtle -o rdfxml-abbrev "$<" > "$@"
  34. # Fetch and tidy programme rendering
  35. # * add doctype and title to validate
  36. # * add charset to not rely on server hinting
  37. # * refer to plaintext serialization (not self) of dataset
  38. $(htmlprogrammefiles): %.html : %.ttl
  39. $(eval base = $(call getbase, $<))
  40. wget -O"$@" "http://programme.ecs.soton.ac.uk/tool.php?src=$(base)"
  41. perl -pi -0 \
  42. -e 's,^(.*?<h1[^>]*>)(.*?)(?=</h1>),<!DOCTYPE html>\n<meta charset="utf-8">\n<title>$$2</title>$$1$$2,ms;' \
  43. -e 's,$(base)\K,/index.txt,;' \
  44. -e "s,class='[^'] *\Kprogramme_current',',;" \
  45. -e "s,<div class='programme_now_message'>now</div>,,g;" \
  46. "$@"