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