csd 0.0.3 → 0.0.4
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 +6 -6
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.4
|
data/csd.gemspec
CHANGED
data/lib/apps/minisip.rb
CHANGED
@@ -23,22 +23,22 @@ module CSD
|
|
23
23
|
run_command("sudo apt-get install #{apt}")
|
24
24
|
end
|
25
25
|
|
26
|
-
unless File.directory?('
|
27
|
-
log "Checking out minisip
|
28
|
-
|
26
|
+
unless File.directory?('repository')
|
27
|
+
log "Checking out minisip repository"
|
28
|
+
checkout_repository
|
29
29
|
end
|
30
30
|
|
31
31
|
run_command "sudo echo /usr/local/share/aclocal >> /usr/share/aclocal/dirlist"
|
32
32
|
|
33
33
|
['libmutil', 'libmnetutil', 'libmcrypto', 'libmikey', 'libmsip', 'libmstun', 'libminisip'].each do |lib|
|
34
|
-
Dir.chdir File.join(root_dir, '
|
34
|
+
Dir.chdir File.join(root_dir, 'repository', lib)
|
35
35
|
log "Going through #{Dir.pwd}"
|
36
36
|
end
|
37
37
|
|
38
38
|
end
|
39
39
|
|
40
|
-
def
|
41
|
-
run_command("git clone http://github.com/csd/minisip.git")
|
40
|
+
def checkout_repository
|
41
|
+
run_command("git clone http://github.com/csd/minisip.git repository")
|
42
42
|
end
|
43
43
|
|
44
44
|
end
|