Hi there,
I am interested in installing TFS ots on my vps with Gentoo OS, however.. I don't know what I need to compile. I downloaded the sources via wget, made a script to change the names of files to lower cases
#!/usr/bin/ruby -w
# ToLowerCase file generator #
# By Killavus ([email protected]) #
# Licensed under GNU GPLv3 License #
$dirs_to_fetch = []
$checked = 0
def fetcher(dir)
Dir.foreach(dir) do |file|
file.gsub!(/\.\./, "")
`mv #{dir}/#{file} #{dir}/#{file.downcase}` if file != "ToLowerCaser.rb" && file.downcase != file
$dirs_to_fetch.push(file.downcase) if File.directory?(file) && file != "."
end
$checked += 1
end
fetcher(".")
$dirs_to_fetch.each do |e|
fetcher(e)
end
puts "DONE! #{$checked} files checked and eventually renamed."
I run it, it changed the files, what then? there's no makefile or so, how am I supposed to compile it?
So simple question: how to compile TFS on Gentoo.
I expect simple answer aswell. Thanks in advance!
I am interested in installing TFS ots on my vps with Gentoo OS, however.. I don't know what I need to compile. I downloaded the sources via wget, made a script to change the names of files to lower cases
#!/usr/bin/ruby -w
# ToLowerCase file generator #
# By Killavus ([email protected]) #
# Licensed under GNU GPLv3 License #
$dirs_to_fetch = []
$checked = 0
def fetcher(dir)
Dir.foreach(dir) do |file|
file.gsub!(/\.\./, "")
`mv #{dir}/#{file} #{dir}/#{file.downcase}` if file != "ToLowerCaser.rb" && file.downcase != file
$dirs_to_fetch.push(file.downcase) if File.directory?(file) && file != "."
end
$checked += 1
end
fetcher(".")
$dirs_to_fetch.each do |e|
fetcher(e)
end
puts "DONE! #{$checked} files checked and eventually renamed."
I run it, it changed the files, what then? there's no makefile or so, how am I supposed to compile it?
So simple question: how to compile TFS on Gentoo.
I expect simple answer aswell. Thanks in advance!