Commit 0ad4b798 authored by Mia's avatar Mia Committed by GitHub

Add bh fonts ~ For #4589 (#4598)

parent b56fdf19
require 'package'
class Font_bh_100dpi < Package
description 'Standard 100dpi Bigelow and Holmes PCF fonts'
homepage 'https://xorg.freedesktop.org/'
version '1.0.3'
compatibility 'all'
source_url 'https://www.x.org/releases/individual/font/font-bh-100dpi-1.0.3.tar.bz2'
source_sha256 '23c07162708e4b79eb33095c8bfa62c783717a9431254bbf44863734ea239481'
depends_on 'bdftopcf'
depends_on 'font_util'
def self.build
system "./configure #{CREW_OPTIONS} --with-fontrootdir=#{CREW_PREFIX}/share/fonts"
system 'make'
end
def self.install
system "make install DESTDIR=#{CREW_DEST_DIR}"
end
end
require 'package'
class Font_bh_lucidatypewriter_100dpi < Package
description '100dpi Bigelow and Holmes Lucida Typewriter PCF fonts'
homepage 'https://xorg.freedesktop.org/'
version '1.0.3'
compatibility 'all'
source_url 'https://www.x.org/releases/individual/font/font-bh-lucidatypewriter-100dpi-1.0.3.tar.bz2'
source_sha256 '62a83363c2536095fda49d260d21e0847675676e4e3415054064cbdffa641fbb'
depends_on 'bdftopcf'
depends_on 'font_util'
def self.build
system "./configure #{CREW_OPTIONS} --with-fontrootdir=#{CREW_PREFIX}/share/fonts"
system 'make'
end
def self.install
system "make install DESTDIR=#{CREW_DEST_DIR}"
end
end
require 'package'
class Font_bh_ttf < Package
description 'Standard Bigelow and Holmes TrueType fonts'
homepage 'https://xorg.freedesktop.org/'
version '1.0.3'
compatibility 'all'
source_url 'https://www.x.org/releases/individual/font/font-bh-ttf-1.0.3.tar.bz2'
source_sha256 '1b4bea63271b4db0726b5b52c97994c3313b6023510349226908090501abd25f'
depends_on 'bdftopcf'
depends_on 'font_util'
def self.build
system "./configure #{CREW_OPTIONS} --with-fontrootdir=#{CREW_PREFIX}/share/fonts"
system 'make'
end
def self.install
system "make install DESTDIR=#{CREW_DEST_DIR}"
end
end
require 'package'
class Font_bh_type1 < Package
description 'Standard Bigelow and Holmes Type1 fonts'
homepage 'https://xorg.freedesktop.org/'
version '1.0.3'
compatibility 'all'
source_url 'https://www.x.org/releases/individual/font/font-bh-type1-1.0.3.tar.bz2'
source_sha256 '761455a297486f3927a85d919b5c948d1d324181d4bea6c95d542504b68a63c1'
depends_on 'bdftopcf'
depends_on 'font_util'
def self.build
system "./configure #{CREW_OPTIONS} --with-fontrootdir=#{CREW_PREFIX}/share/fonts"
system 'make'
end
def self.install
system "make install DESTDIR=#{CREW_DEST_DIR}"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment