pkg-config 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. data/NEWS +4 -0
  2. data/extconf.rb +19 -0
  3. data/lib/pkg-config.rb +1 -1
  4. metadata +4 -3
data/NEWS CHANGED
@@ -1,5 +1,9 @@
1
1
  = NEWS
2
2
 
3
+ == 1.0.2 - 2010/09/02
4
+
5
+ * fix packaing miss.
6
+
3
7
  == 1.0.1 - 2010/09/02
4
8
 
5
9
  * support installing without gem.
data/extconf.rb ADDED
@@ -0,0 +1,19 @@
1
+ # -*- coding: utf-8; mode: ruby -*-
2
+ #
3
+ # This library is free software; you can redistribute it and/or
4
+ # modify it under the terms of the GNU Lesser General Public
5
+ # License as published by the Free Software Foundation; either
6
+ # version 2.1 of the License, or (at your option) any later version.
7
+ #
8
+ # This library is distributed in the hope that it will be useful,
9
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11
+ # Lesser General Public License for more details.
12
+ #
13
+ # You should have received a copy of the GNU Lesser General Public
14
+ # License along with this library; if not, write to the Free Software
15
+ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16
+
17
+ require 'mkmf'
18
+
19
+ create_makefile("pkg-config")
data/lib/pkg-config.rb CHANGED
@@ -251,7 +251,7 @@ class PackageConfig
251
251
  end
252
252
 
253
253
  module PKGConfig
254
- VERSION = "1.0.1"
254
+ VERSION = "1.0.2"
255
255
 
256
256
  module_function
257
257
  def msvc?
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pkg-config
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 1
10
- version: 1.0.1
9
+ - 2
10
+ version: 1.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Kouhei Sutou
@@ -64,6 +64,7 @@ files:
64
64
  - NEWS
65
65
  - README.rdoc
66
66
  - Rakefile
67
+ - extconf.rb
67
68
  - lib/pkg-config.rb
68
69
  - test/run-test.rb
69
70
  - test/test_pkg_config.rb