diff options
author | John Denker <jsd@av8n.com> | 2012-07-18 04:58:53 -0700 |
---|---|---|
committer | John Denker <jsd@av8n.com> | 2012-07-29 15:32:33 -0700 |
commit | 1a6f4a654368174dc717d00b9eaf06872915d51c (patch) | |
tree | 747c705e74349bb8fe4ce0b43db91ba99f1e1739 /dummy-mta/makefile | |
parent | f426b21b6ab89d1e70fb4147ccb42fbd31b34969 (diff) |
add dummy-mta debian package
Diffstat (limited to 'dummy-mta/makefile')
-rw-r--r-- | dummy-mta/makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dummy-mta/makefile b/dummy-mta/makefile new file mode 100644 index 0000000..f9e0cf5 --- /dev/null +++ b/dummy-mta/makefile @@ -0,0 +1,13 @@ + + +dummy-mail-transfer-agent_all.deb : debian-binary control.tar.gz data.tar.gz + ar -r $@ $^ + +control.tar.gz : control + tar -c $^ | gzip > $@ + +data.tar.gz : + tar --exclude '*' -c nothing-at-all | gzip > $@ + +install : dummy-mail-transfer-agent_all.deb + dpkg -i $< |