Files
Bahar KURT 3845a34e03 Initial build of hack-fonts-ttf
This is the default monospace used in KDE Plasma.
2025-09-04 02:49:37 +03:00

17 lines
516 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pisitools
def install():
pisitools.insinto("/usr/share/fonts/TTF", "build/ttf/Hack-*.ttf")
pisitools.insinto("/etc/fonts/conf.avail/45-Hack.conf", "config/fontconfig/45-Hack.conf")
pisitools.dosym("/etc/fonts/conf.avail/45-Hack.conf", "/etc/fonts/conf.d/45-Hack.conf")
pisitools.dodoc("LICENSE.md", "README.md")