Updated linux installers and README. · BitCoding/cefpython@be22609 · GitHub
Skip to content

Commit be22609

Browse files
committed
Updated linux installers and README.
1 parent d7e0c77 commit be22609

3 files changed

Lines changed: 42 additions & 15 deletions

File tree

cefpython/cef3/linux/installer/README.txt.template

Lines changed: 31 additions & 12 deletions

cefpython/cef3/linux/installer/make-deb.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
BITS = platform.architecture()[0]
2525
assert (BITS == "32bit" or BITS == "64bit")
2626
ARCHITECTURE = "i386" if (BITS == "32bit") else "amd64"
27+
IF BITS == "32bit":
28+
LINUX_BITS = "linux32"
29+
ELSE:
30+
LINUX_BITS = "linux64"
2731

2832
PACKAGE_NAME = "cefpython3"
2933
PYTHON_NAME ="python2.7" # Directory name in deb archive
@@ -296,8 +300,8 @@ def main():
296300

297301
# Paths
298302
global DISTUTILS_SETUP
299-
DISTUTILS_SETUP = INSTALLER+"/"+PACKAGE_NAME+"-"+args.version+"-linux-"+\
300-
BITS+"-setup"
303+
DISTUTILS_SETUP = INSTALLER+"/"+PACKAGE_NAME+"-"+args.version+"-"+\
304+
LINUX_BITS+"-setup"
301305

302306
remove_directories_from_previous_run()
303307
create_distutils_setup_package()

cefpython/cef3/linux/installer/make-setup.py

Lines changed: 5 additions & 1 deletion

0 commit comments

Comments
 (0)