Files
chromebrew/packages/unicode_cldr.rb
2023-10-01 17:33:59 -04:00

19 lines
468 B
Ruby

require 'package'
class Unicode_cldr < Package
description 'Unicode Common Locale Data Repository'
homepage 'http://cldr.unicode.org/'
version '43.1'
license 'unicode'
compatibility 'all'
source_url 'https://github.com/unicode-org/cldr.git'
git_hashtag 'release-43-1'
no_compile_needed
def self.install
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/unicode/cldr"
FileUtils.cp_r 'common/', "#{CREW_DEST_PREFIX}/share/unicode/cldr"
end
end