-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinstall.py
executable file
·153 lines (124 loc) · 5.25 KB
/
install.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#!/usr/bin/python
"""
Copyright (C) 2013 Johan Mattsson
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
import os
import subprocess
import glob
import platform
from optparse import OptionParser
from scripts import config
from scripts import version
from scripts.run import run
def getDest (file, dir):
f = dest + prefix + dir + '/'
s = file.rfind ('/')
if s > -1:
f += file[s + 1:]
else:
f += file
return f
def install (file, dir, mode):
f = getDest (file, dir)
print ("install: " + f)
run ('install -d ' + dest + prefix + dir)
run ('install -m ' + `mode` + ' ' + file + ' ' + dest + prefix + dir + '/')
installed.write (f + "\n")
def link (dir, file, linkname):
f = getDest (linkname, dir)
print ("install link: " + f)
run ('cd ' + dest + prefix + dir + ' && ln -sf ' + file + ' ' + linkname)
installed.write (f + "\n")
if not os.path.exists ("build/configured"):
print ("Project is not configured")
exit (1)
if not os.path.exists ("build/installed"):
print ("Project is not built")
exit (1)
parser = OptionParser()
parser.add_option ("-d", "--dest", dest="dest", help="install to this directory", metavar="DEST")
parser.add_option ("-m", "--nogzip", dest="nogzip", help="don't gzip manpages", default=False)
parser.add_option ("-n", "--manpages-directory", dest="mandir", help="put man pages in this directory under prefix")
parser.add_option ("-l", "--libdir", dest="libdir", help="path to directory for shared libraries (lib or lib64).")
(options, args) = parser.parse_args()
if not options.dest:
options.dest = ""
nogzip = options.nogzip
if not options.mandir:
mandir = "/man/man1"
else:
mandir = options.mandir
prefix = config.PREFIX
dest = options.dest
# create uninstall file
installed = open ('build/installed', 'w')
installed.write ('build/installed\n')
# install it:
for file in os.listdir('./layout'):
install ('layout/' + file, '/share/birdfont/layout', 644)
for file in os.listdir('./icons'):
install ('icons/' + file, '/share/birdfont/icons', 644)
install ('resources/linux/birdfont.desktop', '/share/applications', 644)
install ('resources/linux/128x128/birdfont.png', '/share/icons/hicolor/128x128/apps', 644)
install ('resources/linux/48x48/birdfont.png', '/share/icons/hicolor/48x48/apps', 644)
install ('resources/linux/birdfont.appdata.xml', '/share/appdata/', 644)
resources/linux/birdfont.appdata.xmlresources/linux/birdfont.appdata.xml
if os.path.isfile ('build/bin/birdfont'):
install ('build/bin/birdfont', '/bin', 755)
install ('build/bin/birdfont-autotrace', '/bin', 755)
install ('build/bin/birdfont-export', '/bin', 755)
install ('build/bin/birdfont-import', '/bin', 755)
#library
if not options.libdir:
p = platform.machine()
if p == 'i386' or p == 's390' or p == 'ppc' or p == 'armv7hl':
libdir = '/lib'
elif p == 'x86_64' or p == 's390x' or p == 'ppc64':
libdir = '/lib64'
else:
libdir = '/lib'
else:
libdir = options.libdir
if os.path.isfile ('build/bin/libbirdfont.so.' + version.SO_VERSION):
install ('build/bin/libbirdfont.so.' + version.SO_VERSION, libdir, 644)
link (libdir, 'libbirdfont.so.' + version.SO_VERSION, ' libbirdfont.so.' + version.SO_VERSION_MAJOR)
link (libdir, 'libbirdfont.so.' + version.SO_VERSION, ' libbirdfont.so')
elif os.path.isfile ('build/libbirdfont.so.' + version.SO_VERSION):
install ('build/libbirdfont.so.' + version.SO_VERSION, libdir, 644)
link (libdir, 'libbirdfont.so.' + version.SO_VERSION, ' libbirdfont.so.' + version.SO_VERSION_MAJOR)
link (libdir, 'libbirdfont.so.' + version.SO_VERSION, ' libbirdfont.so')
elif os.path.isfile ('build/bin/libbirdfont.' + version.SO_VERSION + '.dylib'):
install ('build/bin/libbirdfont.' + version.SO_VERSION + '.dylib', libdir, 644)
link (libdir, 'libbirdfont.' + version.SO_VERSION + '.dylib', ' libbirdfont.dylib.' + version.SO_VERSION_MAJOR)
link (libdir, 'libbirdfont.' + version.SO_VERSION + '.dylib', ' libbirdfont.dylib')
else:
print ("Can not find libbirdfont.")
exit (1)
#manpages
if not nogzip:
install ('build/birdfont.1.gz', mandir, 644)
install ('build/birdfont-autotrace.1.gz', mandir, 644)
install ('build/birdfont-export.1.gz', mandir, 644)
install ('build/birdfont-import.1.gz', mandir, 644)
else:
install ('resources/linux/birdfont.1', mandir, 644)
install ('resources/linux/birdfont-autotrace.1', mandir, 644)
install ('resources/linux/birdfont-export.1', mandir, 644)
install ('resources/linux/birdfont-import.1', mandir, 644)
#translations
for lang_dir in glob.glob('build/locale/*'):
lc = lang_dir.replace ('build/locale/', "")
install ('build/locale/' + lc + '/LC_MESSAGES/birdfont.mo', '/share/locale/' + lc + '/LC_MESSAGES' , 644);
#file type
install ('resources/linux/birdfont.xml', '/share/mime/packages', 644)
installed.close ()