diff --git a/simon.rb b/simon.rb new file mode 100755 index 0000000..41a0172 --- /dev/null +++ b/simon.rb @@ -0,0 +1,23 @@ +#!/usr/bin/env ruby + +NAME = "simon" +COMPONENT = "extragear" +SECTION = "accessibility" + +$: << File.dirname( __FILE__) +$srcvcs = "git" + +def custom + # Fix the CMakeLists as translated documentation is included in + # releases + + file = File.new( "CMakeLists.txt", File::RDWR ) + str = file.read + file.rewind + file.truncate( 0 ) + str.sub!( /add_subdirectory\( doc \)/, "" ) + file << str + file.close +end + +require 'lib/starter'