move get-deps to Makefile

master
Avril 4 years ago
parent 7bfb891f60
commit e54b462a65
Signed by: flanchan
GPG Key ID: 284488987C31F630

@ -1,6 +1,11 @@
VERSION:= v0.1.0
all: clean sign trust
all: clean deps sign trust
deps:
if [[ ! -d sha256_literal ]]; then \
git clone https://github.com/aguinet/sha256_literal || exit 1; \
fi
trust:
if [[ ! -f generator-$(VERSION) ]]; then \

@ -46,6 +46,10 @@ The post extraction hook is passed to `/bin/sh`, with some input changes:
## Building
To build the `sfexec` binary, g++ is used, along with [sha256_literal] for verifying the post-extraction hook.
To clone `sha256_literal` run:
``` shell
$ make deps
```
Included in the repo is a pre-built generator binary, signed with [my GPG key] at `generator-v<version>.gpg` with a checksum in `generator-v<version>.sha256`. Alternatively you can build it yourself like so:
[sha256_literal]: https://github.com/aguinet/sha256_literal

Binary file not shown.

@ -1,3 +0,0 @@
#!/bin/bash
git clone https://github.com/aguinet/sha256_literal
Loading…
Cancel
Save