Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
2aa09566
Kaydet (Commit)
2aa09566
authored
Şub 01, 2003
tarafından
Just van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
icon support by Robin Dunn, closes patch #678218
üst
040e0337
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletion
+14
-1
bundlebuilder.py
Lib/plat-mac/bundlebuilder.py
+14
-1
No files found.
Lib/plat-mac/bundlebuilder.py
Dosyayı görüntüle @
2aa09566
...
...
@@ -281,6 +281,10 @@ class AppBuilder(BundleBuilder):
# when building a Cocoa app.
nibname
=
None
# The name of the icon file to be copied to Resources and used for
# the Finder icon.
iconfile
=
None
# Symlink the executable instead of copying it.
symlink_exec
=
0
...
...
@@ -369,6 +373,11 @@ class AppBuilder(BundleBuilder):
open
(
bootstrappath
,
"w"
)
.
write
(
BOOTSTRAP_SCRIPT
%
locals
())
os
.
chmod
(
bootstrappath
,
0775
)
if
self
.
iconfile
is
not
None
:
iconbase
=
os
.
path
.
basename
(
self
.
iconfile
)
self
.
plist
.
CFBundleIconFile
=
iconbase
self
.
files
.
append
((
self
.
iconfile
,
pathjoin
(
resdir
,
iconbase
)))
def
postProcess
(
self
):
if
self
.
standalone
:
self
.
addPythonModules
()
...
...
@@ -610,6 +619,8 @@ Options:
-p, --plist=FILE .plist file (default: generate one)
--nib=NAME main nib name
-c, --creator=CCCC 4-char creator code (default: '????')
--iconfile=FILE filename of the icon (an .icns file) to be used
as the Finder icon
-l, --link symlink files/folder instead of copying them
--link-exec symlink the executable instead of copying it
--standalone build a standalone application, which is fully
...
...
@@ -637,7 +648,7 @@ def main(builder=None):
longopts
=
(
"builddir="
,
"name="
,
"resource="
,
"executable="
,
"mainprogram="
,
"creator="
,
"nib="
,
"plist="
,
"link"
,
"link-exec"
,
"help"
,
"verbose"
,
"quiet"
,
"standalone"
,
"exclude="
,
"include="
,
"package="
,
"strip"
)
"exclude="
,
"include="
,
"package="
,
"strip"
,
"iconfile="
)
try
:
options
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
shortopts
,
longopts
)
...
...
@@ -657,6 +668,8 @@ def main(builder=None):
builder
.
mainprogram
=
arg
elif
opt
in
(
'-c'
,
'--creator'
):
builder
.
creator
=
arg
elif
opt
==
'--iconfile'
:
builder
.
iconfile
=
arg
elif
opt
==
"--nib"
:
builder
.
nibname
=
arg
elif
opt
in
(
'-p'
,
'--plist'
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment