summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Dolan <mu@netsoc.tcd.ie>2013-05-11 14:48:39 +0100
committerStephen Dolan <mu@netsoc.tcd.ie>2013-05-11 14:48:39 +0100
commitd03149f4df5c91c16c77d5bda89cdcf724113544 (patch)
treecd184d105dc0e21b1f1aaab39d50a48c2a138386
parent18cf4ad4750fdd79eaabb2d4f5281db1d56a1bfa (diff)
Rake task to build source distribution for website
-rw-r--r--docs/Rakefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/Rakefile b/docs/Rakefile
index f8072072..6ef83d01 100644
--- a/docs/Rakefile
+++ b/docs/Rakefile
@@ -137,3 +137,10 @@ task :mantests do
end
end
+directory "output/download/source"
+task :tarball => ["output/download/source"] do
+ sh "cd ..; make dist"
+ sh "cp ../jq-*.tar.gz output/download/source"
+end
+
+task :dist => [:build, :binaries, :tarball]