File: Rakefile

package info (click to toggle)
libsixel 1.8.2-1%2Bdeb10u1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 14,076 kB
  • sloc: ansic: 22,973; sh: 8,427; cpp: 1,227; python: 517; makefile: 425; xml: 271; ruby: 31; perl: 26
file content (14 lines) | stat: -rw-r--r-- 244 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require "bundler/gem_tasks"
require "rake/testtask"

Rake::TestTask.new(:test) do |t|
  t.libs << "test"
end

task :default => :test

require "rake/extensiontask"

Rake::ExtensionTask.new("libsixel") do |ext|
  ext.lib_dir = "lib/libsixel"
end