File: install.rb

package info (click to toggle)
webgen 0.3.8-3
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 1,912 kB
  • ctags: 586
  • sloc: ruby: 4,789; makefile: 9
file content (19 lines) | stat: -rw-r--r-- 508 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

require 'rpa/install'

class Install_webgen < RPA::Install::FullInstaller
  name 'webgen'
  version '0.3.8-1'
  classification Application
  build do
    installdocs %w[COPYING ChangeLog TODO]
    installdocs 'docs'
    installrdoc %w[README] + Dir['lib/**/*.rb']
    installdata
  end
  description <<-EOF
Webgen is a templated based static website generator.

Webgen is a web page generator implemented in Ruby. It is used to generate static web pages from templates and page description files.
  EOF
end