File: README.source

package info (click to toggle)
torchwood 0.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 632 kB
  • sloc: python: 237; sql: 135; sh: 17; makefile: 14
file content (18 lines) | stat: -rw-r--r-- 499 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- makefile -*-

# The debian/local/ directory contains a vendored copy of vrf.go
# needed by torchwood but the upstream
# github.com/FiloSottile/mostly-harmless is not suitable for packaging
# in Debian.

# You may update the vendored code by running:
#
# make -f debian/README.source

D=debian/local
all:
	rm -rfv $(D)
	mkdir -pv $(D)
	wget -nv -O $(D)/vrf.go "https://raw.githubusercontent.com/FiloSottile/mostly-harmless/c78cdd82469b4f4c526d8d8329a3ff7081b833f5/vrf-r255/vrf.go"

.PHONY: all