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.
- data/VERSION +1 -1
- data/csd.gemspec +1 -1
- data/lib/apps/minisip.rb +8 -1
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.5
|
data/csd.gemspec
CHANGED
data/lib/apps/minisip.rb
CHANGED
|
@@ -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
|