initial commit
[PackageFactory.git] / example.rb
blobd6f44284322e9b01509e4d9712ed914ff18e54e5
1 require 'Autotools'
3 class Example<Autotools
5         def initialize()
6                 super
7                 @name        = 'example'
8                 @version     = '0.1.2'
9                 @license     = 'GPLv2'
10                 @homepage    = 'http://www.example.com'
11                 @depends     = [ 'gtk2-devel', 'update-desktop-files' ]
12                 @rdepends    = [ 'tango-icon-theme' ]
13                 @summary     = 'An example application'
14                 @description = 'This is an example application'
15         end
17 end