csd 0.0.5 → 0.0.6
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 +3 -2
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.6
|
data/csd.gemspec
CHANGED
data/lib/apps/minisip.rb
CHANGED
@@ -19,7 +19,7 @@ module CSD
|
|
19
19
|
Dir.chdir('minisip')
|
20
20
|
root_dir = Dir.pwd
|
21
21
|
|
22
|
-
['git-core', 'automake', 'libssl-dev', 'libtool', 'libglademm-2.4-dev'].each do |apt|
|
22
|
+
['git-core', 'subversion', 'automake', 'libssl-dev', 'libtool', 'libglademm-2.4-dev'].each do |apt|
|
23
23
|
run_command("sudo apt-get --yes install #{apt}")
|
24
24
|
end
|
25
25
|
|
@@ -45,7 +45,8 @@ module CSD
|
|
45
45
|
end
|
46
46
|
|
47
47
|
def checkout_repository
|
48
|
-
run_command("git clone http://github.com/csd/minisip.git repository")
|
48
|
+
#run_command("git clone http://github.com/csd/minisip.git repository")
|
49
|
+
run_command("svn co svn://minisip.org/minisip/trunk repository")
|
49
50
|
end
|
50
51
|
|
51
52
|
end
|