blob: cc6cfff895046a20f85490ab995804bf4006a254 (
plain)
- infiles := $(wildcard data/*.ttl data/*/*.ttl)
- turtlefiles := $(infiles:data/%.ttl=build/%/index.ttl)
- textfiles = $(turtlefiles:%.ttl=%.txt)
- rdfxmlfiles = $(turtlefiles:%.ttl=%.rdf)
- # TODO: resolve event:Event with prog:Programme being foaf:primaryTopic of <>
- htmlprogrammefiles = build/2014/europe/index.html
- htmlfiles = $(htmlprogrammefiles)
- getbase = $(shell perl -ne '/^\@base\s+<(http.+)>/ and print $$1 and exit;' "$1")
- all: $(textfiles) $(rdfxmlfiles) $(htmlfiles)
- clean:
- rm -rf build
- $(turtlefiles): build/%/index.ttl : data/%.ttl
- mkdir -p $(dir $@)
- cp $< $@
- # $(eval base = $(call getbase, $<))
- # rapper $(base:%=-I "%") -i turtle -o turtle "$<" > "$@"
- # perl -i -pe 's/ {4}/\t/g' "$@"
- $(textfiles): %.txt : %.ttl
- ln -fs $(notdir $<) $@
- $(rdfxmlfiles): %.rdf : %.ttl
- $(eval base = $(call getbase, $<))
- rapper $(base:%=-I "%") -i turtle -o rdfxml-abbrev "$<" > "$@"
- $(htmlprogrammefiles): %.html : %.ttl
- $(eval base = $(call getbase, $<))
- wget -O"$@" "http://programme.ecs.soton.ac.uk/tool.php?src=$(base)"
- perl -pi -e 's,$(base)\K,/index.txt,' "$@"
|