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