19 lines
608 B
Makefile
19 lines
608 B
Makefile
JAQ?=jaq
|
|
|
|
subscriptions.txt: subscriptions.json
|
|
$(JAQ) --raw-output '.[]' subscriptions.json > $@
|
|
|
|
subscriptions.curl: subscriptions.json
|
|
$(JAQ) --raw-output '.[] | (split("/") | last) as $$name | "url \(.)\noutput \($$name).html"' subscriptions.json > $@
|
|
|
|
fetch: subscriptions.curl
|
|
curl --location --output-dir html --create-dirs --rate 1/s --config subscriptions.curl
|
|
|
|
channel-json: subscriptions.txt
|
|
cat subscriptions.txt | xargs -n1 --verbose ./generate-json-opml
|
|
|
|
# turn all the channel json files into an OPML file
|
|
subscriptions.opml:
|
|
./generate-opml > $@
|
|
|
|
.PHONY: channel-json subscriptions.opml
|