mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
28 lines
979 B
Ruby
28 lines
979 B
Ruby
require 'package'
|
|
|
|
class Gsfonts < Package
|
|
description 'Ghostscript standard Type1 fonts'
|
|
homepage 'https://sourceforge.net/projects/gs-fonts/'
|
|
version '8.11'
|
|
license 'GPL-2'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://managedway.dl.sourceforge.net/project/ghostscript/AFPL%20Ghostscript/8.14/ghostscript-fonts-std-8.11.tar.gz'
|
|
source_sha256 '0eb6f356119f2e49b2563210852e17f57f9dcc5755f350a69a46a0d641a0c401'
|
|
binary_compression 'tar.xz'
|
|
|
|
binary_sha256({
|
|
aarch64: 'fd8f867e14daa6927137142e6ab5d72ca3116981371608a09674191b22ab7be4',
|
|
armv7l: 'fd8f867e14daa6927137142e6ab5d72ca3116981371608a09674191b22ab7be4',
|
|
x86_64: 'd3f1bbb62b07cd5a0da5c83105d86718f3827415be95df0b5f0d988b651a0466'
|
|
})
|
|
|
|
depends_on 'font_util'
|
|
depends_on 'font_misc_misc'
|
|
depends_on 'bdftopcf'
|
|
|
|
def self.install
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/fonts/Type1"
|
|
FileUtils.cp_r Dir.glob('*'), "#{CREW_DEST_PREFIX}/share/fonts/Type1"
|
|
end
|
|
end
|