blob: 4cd218a81f1951c2b3c68cb83937cc9bfe25f898 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
guix-sources = \
src/xyz/euandreh/packages.scm \
src/xyz/euandreh/posix.scm \
src/xyz/euandreh/latest.scm
all:
for s in $(guix-sources); do guix build -f $$s; done
nix-shell --run ''
refresh:
sh scripts/paku -rg
check:
sh aux/assert-shellcheck.sh
sh aux/assert-nixfmt.sh
sh aux/workflow/assert-todos.sh
dev-check: check
clean:
rm -rf public/
public/dependencies.svg: dependencies.dot
mkdir -p public
dot dependencies.dot -Tsvg > public/dependencies.svg
public: README.md TODOs.md public/dependencies.svg
sh aux/workflow/public.sh "EuAndreh's package repository" package-repository public-inbox
cp EuAndreh.key public/
.PHONY: all clean check refresh
|