csd 0.0.4 → 0.0.5

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/VERSION +1 -1
  2. data/csd.gemspec +1 -1
  3. data/lib/apps/minisip.rb +8 -1
  4. metadata +2 -2
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.4
1
+ 0.0.5
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{csd}
8
- s.version = "0.0.4"
8
+ s.version = "0.0.5"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Technology Transfer Alliance Team"]
@@ -20,7 +20,7 @@ module CSD
20
20
  root_dir = Dir.pwd
21
21
 
22
22
  ['git-core', 'automake', 'libssl-dev', 'libtool', 'libglademm-2.4-dev'].each do |apt|
23
- run_command("sudo apt-get install #{apt}")
23
+ run_command("sudo apt-get --yes install #{apt}")
24
24
  end
25
25
 
26
26
  unless File.directory?('repository')
@@ -33,8 +33,15 @@ module CSD
33
33
  ['libmutil', 'libmnetutil', 'libmcrypto', 'libmikey', 'libmsip', 'libmstun', 'libminisip'].each do |lib|
34
34
  Dir.chdir File.join(root_dir, 'repository', lib)
35
35
  log "Going through #{Dir.pwd}"
36
+ run_command("./bootstrap")
37
+ run_command("./configure")
38
+ run_command("make")
39
+ run_command("make install")
36
40
  end
37
41
 
42
+ run_command("ldconfig /usr/local/lib/libminisip.so.0")
43
+ run_command("minisip_gtkgui")
44
+
38
45
  end
39
46
 
40
47
  def checkout_repository
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 4
9
- version: 0.0.4
8
+ - 5
9
+ version: 0.0.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Technology Transfer Alliance Team