cmowforth-cups 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/ext/extconf.rb +10 -0
  2. metadata +54 -0
data/ext/extconf.rb ADDED
@@ -0,0 +1,10 @@
1
+ require "mkmf"
2
+
3
+ cups_cflags = `cups-config --cflags`.chomp
4
+ cups_libs = `cups-config --libs`.chomp
5
+
6
+ with_cflags(cups_cflags) {
7
+ with_ldflags(cups_libs) {
8
+ create_makefile("cups")
9
+ }
10
+ }
metadata ADDED
@@ -0,0 +1,54 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cmowforth-cups
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Chris Mowforth
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-02-25 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description:
17
+ email:
18
+ - chris@mowforth.com
19
+ executables: []
20
+
21
+ extensions:
22
+ - ext/extconf.rb
23
+ extra_rdoc_files:
24
+ - README
25
+ files: []
26
+
27
+ has_rdoc: false
28
+ homepage: http://cups.99th.st/
29
+ post_install_message:
30
+ rdoc_options: []
31
+
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: "0"
39
+ version:
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: "0"
45
+ version:
46
+ requirements: []
47
+
48
+ rubyforge_project:
49
+ rubygems_version: 1.2.0
50
+ signing_key:
51
+ specification_version: 2
52
+ summary: Print stuff through the Common Unix Printing System using Ruby
53
+ test_files: []
54
+