mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-08 10:44:09 -04:00
...
This commit is contained in:
parent
d1bfc18ac5
commit
a1a4d3ecc9
@ -104,7 +104,7 @@ def build_dep(args):
|
|||||||
class BuildInstaller(Command):
|
class BuildInstaller(Command):
|
||||||
|
|
||||||
OS = ''
|
OS = ''
|
||||||
BITNESS = '64'
|
BITNESS = ''
|
||||||
|
|
||||||
def add_options(self, parser):
|
def add_options(self, parser):
|
||||||
parser.add_option(
|
parser.add_option(
|
||||||
@ -159,6 +159,7 @@ class BuildInstallers(BuildInstaller):
|
|||||||
|
|
||||||
class Linux64(BuildInstaller):
|
class Linux64(BuildInstaller):
|
||||||
OS = 'linux'
|
OS = 'linux'
|
||||||
|
BITNESS = '64'
|
||||||
description = 'Build the 64-bit Linux calibre installer'
|
description = 'Build the 64-bit Linux calibre installer'
|
||||||
|
|
||||||
|
|
||||||
@ -170,6 +171,7 @@ class LinuxArm64(BuildInstaller):
|
|||||||
|
|
||||||
class Win64(BuildInstaller):
|
class Win64(BuildInstaller):
|
||||||
OS = 'windows'
|
OS = 'windows'
|
||||||
|
BITNESS = '64'
|
||||||
description = 'Build the 64-bit windows calibre installer'
|
description = 'Build the 64-bit windows calibre installer'
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user