pkg-config 1.1.6 → 1.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/NEWS +9 -0
- data/lib/pkg-config.rb +15 -11
- data/lib/pkg-config/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4a93be0df4539aa25924bde2ea4e424d03586bb
|
4
|
+
data.tar.gz: 23956703f9d489a287f02f11aeb165321f2d3350
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 671a47f3789dd0f06bab32548d46366fa6129144250f42e5900abf7666e5185b0ca8b62f1a94ede73463c6a2bb15a9368c7209a8ecb048dc22b454293a7b835e
|
7
|
+
data.tar.gz: 3631f35e443768572477871e2d8106a4ef72cfe02067989c2c2087f9002d104c9a83f2c25d63d346aeab025b1007a4b93fa0f30d2c77d75ddb1ec85a64abf142
|
data/NEWS
CHANGED
data/lib/pkg-config.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright 2008-
|
1
|
+
# Copyright 2008-2016 Kouhei Sutou <kou@cozmixng.org>
|
2
2
|
#
|
3
3
|
# This library is free software; you can redistribute it and/or
|
4
4
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -303,16 +303,20 @@ class PackageConfig
|
|
303
303
|
|
304
304
|
def guess_default_path
|
305
305
|
arch_depended_path = Dir.glob('/usr/lib/*/pkgconfig').join(SEPARATOR)
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
306
|
+
default_paths = [
|
307
|
+
"/usr/local/lib64/pkgconfig",
|
308
|
+
"/usr/local/lib/pkgconfig",
|
309
|
+
"/usr/local/libdata/pkgconfig",
|
310
|
+
"/opt/local/lib/pkgconfig",
|
311
|
+
arch_depended_path,
|
312
|
+
"/usr/lib64/pkgconfig",
|
313
|
+
"/usr/lib/pkgconfig",
|
314
|
+
"/usr/libdata/pkgconfig",
|
315
|
+
"/usr/X11/lib/pkgconfig",
|
316
|
+
"/opt/X11/lib/pkgconfig",
|
317
|
+
"/usr/share/pkgconfig",
|
318
|
+
]
|
319
|
+
default_path = default_paths.join(SEPARATOR)
|
316
320
|
libdir = ENV["PKG_CONFIG_LIBDIR"]
|
317
321
|
default_path = [libdir, default_path].join(SEPARATOR) if libdir
|
318
322
|
|
data/lib/pkg-config/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pkg-config
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kouhei Sutou
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-01-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: test-unit
|
@@ -89,10 +89,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
89
89
|
version: '0'
|
90
90
|
requirements: []
|
91
91
|
rubyforge_project: cairo
|
92
|
-
rubygems_version: 2.
|
92
|
+
rubygems_version: 2.4.5.1
|
93
93
|
signing_key:
|
94
94
|
specification_version: 4
|
95
95
|
summary: A pkg-config implementation for Ruby
|
96
96
|
test_files:
|
97
|
-
- test/test_pkg_config.rb
|
98
97
|
- test/run-test.rb
|
98
|
+
- test/test_pkg_config.rb
|
99
|
+
has_rdoc:
|