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
|