diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 21 |
1 files changed, 16 insertions, 5 deletions
@@ -12,10 +12,10 @@ -all: EuAndreh.key guix nix debian +all: EuAndreh.key guix nix debian homebrew -paku.lock: src/bin/paku +paku.lock: src/bin/paku Makefile touch $@ @@ -78,6 +78,13 @@ debian.mk: paku.lock debian: debian.mk $(MAKE) -f debian.mk +homebrew: Formula + +Formula: paku.lock + mkdir -p $@ + perl src/bin/paku homebrew $@ + touch $@ + public/debian: debian mkdir -p $(@D) @@ -94,10 +101,14 @@ upload: public rsync -avzP --delete public/ euandre.org:/srv/www/s/package-repository/ HTTP-REMOTE = 'https://euandre.org/s/package-repository' -check-ubuntu: - sh tests/vm-check.sh -x -t deb -H ubuntu-x86_64-headless -r $(HTTP-REMOTE) +GIT-REMOTE = 'git://euandre.org/package-repository' +check-ubuntu-deb: + sh tests/vm-check.sh -x -H ubuntu-x86_64-headless -r $(HTTP-REMOTE) -t deb + +check-ubuntu-homebrew: + sh tests/vm-check.sh -x -H ubuntu-x86_64-headless -r $(GIT-REMOTE) -t homebrew -check: check-ubuntu +check: all check-ubuntu-deb check-ubuntu-homebrew clean: |