-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
69 lines (63 loc) · 2.35 KB
/
setup.py
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os, subprocess
def create_mo_files():
podir = "po"
mo = []
for po in os.listdir(podir):
if po.endswith(".po"):
os.makedirs("{}/{}/LC_MESSAGES".format(podir, po.split(".po")[0]), exist_ok=True)
mo_file = "{}/{}/LC_MESSAGES/{}".format(podir, po.split(".po")[0], "pardus-font-manager.mo")
msgfmt_cmd = 'msgfmt {} -o {}'.format(podir + "/" + po, mo_file)
subprocess.call(msgfmt_cmd, shell=True)
mo.append(("/usr/share/locale/" + po.split(".po")[0] + "/LC_MESSAGES",
["po/" + po.split(".po")[0] + "/LC_MESSAGES/pardus-font-manager.mo"]))
return mo
def compile_c_code():
compile_cmd = "gcc src/font_adder.c -o libfontadder.so -shared -lfontconfig"
if subprocess.call(compile_cmd, shell=True) != 0:
raise RuntimeError("C code compilation failed!")
return [("/usr/share/pardus/pardus-font-manager/src", ["libfontadder.so"])]
changelog = "debian/changelog"
if os.path.exists(changelog):
head = open(changelog).readline()
try:
version = head.split("(")[1].split(")")[0]
except:
print("debian/changelog format is wrong for get version")
version = "0.0.0"
f = open("src/__version__", "w")
f.write(version)
f.close()
data_files = [
("/usr/bin", ["pardus-font-manager"]),
("/usr/share/applications",
["data/tr.org.pardus.font-manager.desktop"]),
("/usr/share/pardus/pardus-font-manager/ui",
["ui/MainWindow.glade"]),
("/usr/share/pardus/pardus-font-manager/src",
["src/Main.py",
"src/MainWindow.py",
"src/add_font.py",
"src/delete_font.py",
"src/font_charmaps.py",
"src/font_viewer.py",
"src/__version__"]),
("/usr/share/icons/hicolor/scalable/apps/",
["data/pardus-font-manager.svg"])
] + create_mo_files() + compile_c_code()
setup(
name="pardus-font-manager",
version=version,
packages=find_packages(),
scripts=["pardus-font-manager"],
install_requires=["PyGObject"],
data_files=data_files,
author="Emel Öztürk",
author_email="[email protected]",
description="Simple Font Manager",
license="GPLv3",
keywords="pardus-font-manager, font, otf, ttf",
url="https://github.com/pardus/pardus-font-manager",
)