blob: 9bac35919f2de78d21823ff6cfbdab6cb0a28482 (
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
|
all:
guix build -f src/xyz/euandreh/packages.scm
nix-shell --run ''
check:
sh aux/assert-shellcheck.sh
sh aux/assert-nixfmt.sh
sh aux/workflow/assert-todos.sh
clean:
rm -rf public/
NAME_UC = EuAndreh's package repository
NAME = package-repository
MAILING_LIST = public-inbox
public: README.md TODOs.md EuAndreh.key
sh aux/workflow/TODOs.sh "$(NAME_UC)" $(NAME) $(MAILING_LIST)
sh aux/workflow/README.sh "$(NAME_UC)" $(NAME)
sh aux/ci/report.sh '$(NAME)'
cp EuAndreh.key public/
.PHONY: all clean check
|