File: Rakefile

package info (click to toggle)
ruby-gnome2 3.1.0-1%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 16,072 kB
  • ctags: 17,433
  • sloc: ansic: 93,621; ruby: 62,273; xml: 335; sh: 246; makefile: 25
file content (13 lines) | stat: -rw-r--r-- 475 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- ruby -*-

$LOAD_PATH.unshift("./../glib2/lib")
require 'gnome2/rake/package-task'

package_task = GNOME2::Rake::PackageTask.new do |package|
  package.summary = "Ruby/GtkSourceView2 is a Ruby binding of gtksourceview-2.x."
  package.description = "Ruby/GtkSourceView2 is a Ruby binding of gtksourceview-2.x."
  package.dependency.gem.runtime = ["gtk2"]
  package.windows.packages = ["gtksourceview"]
  package.windows.dependencies = ["libxml2"]
end
package_task.define