summaryrefslogtreecommitdiff
path: root/Makefile
blob: 6a93c962b1f61ca58e319318f57895192f24c576 (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. build/2015/india/index.html
  19. htmlfiles = $(htmlprogrammefiles)
  20. getbase = $(shell perl -ne '/^\@base\s+<(http.+)>/ and print $$1 and exit;' "$1")
  21. all: $(textfiles) $(rdfxmlfiles) $(htmlfiles)
  22. clean:
  23. rm -rf build
  24. $(turtlefiles): build/%/index.ttl : data/%.ttl Makefile
  25. mkdir -p $(dir $@)
  26. cp $< $@
  27. # $(eval base = $(call getbase, $<))
  28. # rapper $(base:%=-I "%") -i turtle -o turtle "$<" > "$@"
  29. # perl -i -pe 's/ {4}/\t/g' "$@"
  30. $(textfiles): %.txt : %.ttl Makefile
  31. ln -fs $(notdir $<) $@
  32. $(rdfxmlfiles): %.rdf : %.ttl Makefile
  33. $(eval base = $(call getbase, $<))
  34. rapper $(base:%=-I "%") -i turtle -o rdfxml-abbrev "$<" > "$@"
  35. # Fetch and tidy programme rendering
  36. # * add doctype and title to validate
  37. # * add charset to not rely on server hinting
  38. # * refer to plaintext serialization (not self) of dataset
  39. $(htmlprogrammefiles): %.html : %.ttl Makefile
  40. $(eval base = $(call getbase, $<))
  41. wget -O"$@" "http://programme.ecs.soton.ac.uk/tool.php?src=$(base)"
  42. perl -pi -0 \
  43. -e 's,^(.*?<h1[^>]*>)(.*?)(?=</h1>),<!DOCTYPE html>\n<meta charset="utf-8">\n<title>$$2</title>$$1$$2,ms;' \
  44. -e 's,>$(base)<,>hand-written Linked Open Data<,;' \
  45. -e 's,$(base)\K,/index.txt,;' \
  46. -e "s,class='[^'] *\Kprogramme_current',',;" \
  47. -e "s,<div class='programme_now_message'>now</div>,,g;" \
  48. "$@"