Skip to content

Commit

Permalink
Make it easier to get just the tarball.
Browse files Browse the repository at this point in the history
  • Loading branch information
dak180 committed Nov 18, 2016
1 parent 28640bd commit 8b81a26
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,18 @@ auth: AUTHORS.txt
AUTHORS.txt:
git log --format='%aN <%aE>' | awk '{arr[$$0]++} END{for (i in arr){print arr[i], i;}}' | sort -rn | cut -d\ -f2- > AUTHORS.txt

# The tarball signed and sealed
dist: tarball autorevision-$(VERS).tgz.md5 autorevision-$(VERS).tgz.sig

# The tarball
dist: autorevision-$(VERS).tgz autorevision-$(VERS).tgz.md5 autorevision-$(VERS).tgz.sig
tarball: autorevision-$(VERS).tgz

# Make an md5 checksum
autorevision-$(VERS).tgz.md5: autorevision-$(VERS).tgz
autorevision-$(VERS).tgz.md5: tarball
$(MD5) autorevision-$(VERS).tgz > autorevision-$(VERS).tgz.md5

# Make a detached gpg sig
autorevision-$(VERS).tgz.sig: autorevision-$(VERS).tgz
autorevision-$(VERS).tgz.sig: tarball
gpg --armour --detach-sign --output "autorevision-$(VERS).tgz.sig" "autorevision-$(VERS).tgz"

# The actual tarball
Expand Down

0 comments on commit 8b81a26

Please sign in to comment.