Commit 513eb9a7 authored by Mia's avatar Mia Committed by GitHub

Add bitstream 100dpi fonts (#4602)

parent a2c1fd8b
require 'package'
class Font_bitstream_100dpi < 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-100dpi-1.0.3.tar.bz2'
source_sha256 'ebe0d7444e3d7c8da7642055ac2206f0190ee060700d99cd876f8fc9964cb6ce'
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_bitstream_type1 < Package
description 'Standard Type1 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-type1-1.0.3.tar.bz2'
source_sha256 'c6ea0569adad2c577f140328dc3302e729cb1b1ea90cd0025caf380625f8a688'
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