Add 75dpi fonts (#4604)

This commit is contained in:
Mia
2020-11-24 16:42:17 -05:00
committed by GitHub
parent a39a4a43bc
commit a2c1fd8bed
5 changed files with 100 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
require 'package'
class Font_adobe_75dpi < Package
description 'Standard 75pi Adobe PCF fonts'
homepage 'https://xorg.freedesktop.org/'
version '1.0.3'
compatibility 'all'
source_url 'https://www.x.org/releases/individual/font/font-adobe-75dpi-1.0.3.tar.bz2'
source_sha256 'c6024a1e4a1e65f413f994dd08b734efd393ce0a502eb465deb77b9a36db4d09'
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

View File

@@ -0,0 +1,20 @@
require 'package'
class Font_adobe_utopia_75dpi < Package
description '100dpi Adobe Utopia PCF fonts'
homepage 'https://xorg.freedesktop.org/'
version '1.0.4'
compatibility 'all'
source_url 'https://www.x.org/releases/individual/font/font-adobe-utopia-75dpi-1.0.4.tar.bz2'
source_sha256 '8732719c61f3661c8bad63804ebfd54fc7de21ab848e9a26a19b1778ef8b5c94'
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

20
packages/font_bh_75dpi.rb Normal file
View File

@@ -0,0 +1,20 @@
require 'package'
class Font_bh_75dpi < Package
description 'Standard 75dpi 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-75dpi-1.0.3.tar.bz2'
source_sha256 '3486aa51ac92c646a448fe899c5c3dae0024b1fef724d5100d52640d1cac721c'
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

View File

@@ -0,0 +1,20 @@
require 'package'
class Font_bh_lucidatypewriter_75dpi < Package
description '75dpi 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-75dpi-1.0.3.tar.bz2'
source_sha256 '4ac16afbe205480cc5572e2977ea63488c543d05be0ea8e5a94c845a6eebcb31'
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

View File

@@ -0,0 +1,20 @@
require 'package'
class Font_bitstream_75dpi < Package
description 'Standard 100dpi Bitstream PCF fonts'
homepage 'https://xorg.freedesktop.org/'
version '1.0.3'
compatibility 'all'
source_url 'https://www.x.org/releases/individual/font/font-bitstream-75dpi-1.0.3.tar.bz2'
source_sha256 'ba3f5e4610c07bd5859881660753ec6d75d179f26fc967aa776dbb3d5d5cf48e'
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