Alessio Caiazza is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

nolith / ipv6 - fine del mondo http://slideshare.net/nolith/ipv6-e-la-fine-del-mondo

Slide su IPv6 per la notte blù

Clone this repository (size: 9.7 MB): HTTPS / SSH
hg clone https://bitbucket.org/nolith/ipv6-fine-del-mondo
hg clone ssh://hg@bitbucket.org/nolith/ipv6-fine-del-mondo
require 'latex_task'
require 'rake/clean'

latex_file 'ipv6.slides.pdf' do |runner|
      runner.main_file = 'ipv6.slides.tex'
end

latex_file 'ipv6.handout.pdf' do |runner|
      runner.main_file = 'ipv6.handout.tex'
end

latex_file 'ipv6.article.pdf' do |runner|
      runner.main_file = 'ipv6.article.tex'
end


desc 'Genera le slides'
task :slides => 'ipv6.slides.pdf' 
desc 'Genera l\'handout'
task :handout => 'ipv6.handout.pdf'
#desc 'Genera l\'article'
#task :article => 'ipv6.article.pdf'

desc 'Genera le slides'
task :default => :slides

desc 'Genera tutto'
task :all => [:slides, :handout] #, :article ]

%w[*.log *.aux *.bbl *.blg *.ilg *.toc *.lof *.lot *.idx *.ind *.nav *.out *.snm *.vrb *~].each do |junk|
  CLEAN.include junk
end

CLOBBER.include '*.pdf'