Add buildroot 2018-02

This commit is contained in:
Pascal Vizeli
2018-03-17 23:47:00 +00:00
parent 3776c47f83
commit 67742041ad
10007 changed files with 405098 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
config BR2_PACKAGE_GHOSTSCRIPT_FONTS
bool "ghostscript-fonts"
help
Fonts and font metrics customarily distributed with
Ghostscript. Currently includes the 35 standard PostScript
fonts and a grab-bag of others.
http://sourceforge.net/projects/gs-fonts

View File

@@ -0,0 +1,2 @@
# From http://sourceforge.net/projects/gs-fonts/files/gs-fonts/8.11%20%28base%2035%2C%20GPL%29/
sha1 2a7198e8178b2e7dba87cb5794da515200b568f5 ghostscript-fonts-std-8.11.tar.gz

View File

@@ -0,0 +1,21 @@
################################################################################
#
# ghostscript-fonts
#
################################################################################
GHOSTSCRIPT_FONTS_VERSION = 8.11
GHOSTSCRIPT_FONTS_SITE = http://downloads.sourceforge.net/project/gs-fonts/gs-fonts/8.11%20%28base%2035%2C%20GPL%29
GHOSTSCRIPT_FONTS_SOURCE = ghostscript-fonts-std-$(GHOSTSCRIPT_FONTS_VERSION).tar.gz
GHOSTSCRIPT_FONTS_LICENSE = GPL-2.0
GHOSTSCRIPT_FONTS_LICENSE_FILES = COPYING
GHOSTSCRIPT_FONTS_TARGET_DIR = $(TARGET_DIR)/usr/share/fonts/gs
define GHOSTSCRIPT_FONTS_INSTALL_TARGET_CMDS
mkdir -p $(GHOSTSCRIPT_FONTS_TARGET_DIR)
$(INSTALL) -m 644 $(@D)/*.afm $(GHOSTSCRIPT_FONTS_TARGET_DIR)
$(INSTALL) -m 644 $(@D)/*.pfb $(GHOSTSCRIPT_FONTS_TARGET_DIR)
endef
$(eval $(generic-package))