mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
19 lines
468 B
Ruby
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
|