Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fontconfig.py « packages - github.com/mono/bockbuild.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af6fab7fe00725e9102d7dc2275fe60ad0693977 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class FontConfigPackage (Package):

    def __init__(self):
        Package.__init__(self, 'fontconfig', '2.10.2',
                         configure_flags=['--disable-docs'],
                         sources=[
                             'https://www.freedesktop.org/software/fontconfig/release/%{name}-%{version}.tar.gz'
                         ],
                         # note: a non-empty DESTDIR keeps fc-cache from running at
                         # install-time
                         )

    def build(self):
        if Package.profile.name == 'darwin':
            self.configure_flags.extend([
                '--with-cache-dir="~/Library/Caches/com.xamarin.fontconfig"',
                '--with-default-fonts=/System/Library/Fonts',
                '--with-add-fonts=/Library/Fonts,/Network/Library/Fonts,/System/Library/Fonts'
            ])
        Package.build(self)

FontConfigPackage()