Marcel Telka
2024-04-02 f1b1912adc00984cd165470b728dda03ac81b2c6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
 
#
# Copyright 2018,2021 Andreas Wacknitz
#
 
BUILD_STYLE=                justmake
include ../../../make-rules/shared-macros.mk
 
BUILD_BITS=                    32
COMPONENT_NAME=                fira-code-ttf
COMPONENT_SUMMARY=            Monospaced font with programming ligatures
COMPONENT_VERSION=             6.2
COMPONENT_PROJECT_URL=         https://github.com/tonsky/FiraCode
COMPONENT_FMRI=                system/font/truetype/fira-code
COMPONENT_CLASSIFICATION=    System/Fonts
COMPONENT_SRC_NAME=            Fira_Code
COMPONENT_SRC=                $(COMPONENT_SRC_NAME)_v$(COMPONENT_VERSION)
COMPONENT_ARCHIVE=          $(COMPONENT_SRC).zip
COMPONENT_ARCHIVE_URL=        https://github.com/tonsky/FiraCode/releases/download/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
COMPONENT_ARCHIVE_HASH=        sha256:0949915ba8eb24d89fd93d10a7ff623f42830d7c5ffc3ecbf960e4ecad3e3e79
COMPONENT_LICENSE=            FiraCode License
COMPONENT_LICENSE_FILE=        fira-code.license
 
TEST_TARGET=                $(NO_TESTS)
include $(WS_MAKE_RULES)/common.mk
 
# doesn't extract into its own directory, so pass -r dir to the unpack target
UNPACK_ARGS+=-r $(COMPONENT_SRC)
 
FONT_TTF_DIR=/usr/share/fonts/TrueType
THIS_FONT_DIR=$(FONT_TTF_DIR)/fira-code
 
COMPONENT_BUILD_ACTION= cd $(@D)/ttf ; mkfontscale ; mkfontdir
 
COMPONENT_INSTALL_ACTION= cd $(@D) && \
    rm -rf $(PROTO_DIR)$(THIS_FONT_DIR) && mkdir -p $(PROTO_DIR)$(THIS_FONT_DIR) && \
        $(INSTALL) -c -m 0444 ttf/*.ttf ttf/fonts.dir ttf/fonts.scale $(PROTO_DIR)$(THIS_FONT_DIR);
 
REQUIRED_PACKAGES+= x11/mkfontdir
REQUIRED_PACKAGES+= x11/mkfontscale