mkvtoolnix/rake.d/tarball.rb

21 lines
610 B
Ruby
Raw Normal View History

def create_source_tarball suffix = ""
tarball = "#{Dir.pwd}/../mkvtoolnix-#{c(:PACKAGE_VERSION)}#{suffix}.tar.xz"
fail "#{tarball} does already exist" if FileTest.exists?(tarball)
Dir.mktmpdir do |dir|
clone_dir = "#{dir}/mkvtoolnix-#{c(:PACKAGE_VERSION)}"
commands = [
"git clone \"#{Dir.pwd}\" \"#{clone_dir}\"",
"cd #{clone_dir}",
"./autogen.sh",
"git submodule init",
"git submodule update",
"rm -rf .git",
"cd ..",
"tar cJf \"#{tarball}\" mkvtoolnix-#{c(:PACKAGE_VERSION)}",
]
system commands.join(" && ")
2015-05-12 17:21:27 +00:00
puts tarball
end
end