mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-14 22:03:32 +01:00
...
This commit is contained in:
parent
5a2b7aa837
commit
53aef7cc20
1 changed files with 3 additions and 1 deletions
|
|
@ -104,7 +104,7 @@ def build_dep(args):
|
|||
class BuildInstaller(Command):
|
||||
|
||||
OS = ''
|
||||
BITNESS = '64'
|
||||
BITNESS = ''
|
||||
|
||||
def add_options(self, parser):
|
||||
parser.add_option(
|
||||
|
|
@ -159,6 +159,7 @@ def run(self, opts):
|
|||
|
||||
class Linux64(BuildInstaller):
|
||||
OS = 'linux'
|
||||
BITNESS = '64'
|
||||
description = 'Build the 64-bit Linux calibre installer'
|
||||
|
||||
|
||||
|
|
@ -170,6 +171,7 @@ class LinuxArm64(BuildInstaller):
|
|||
|
||||
class Win64(BuildInstaller):
|
||||
OS = 'windows'
|
||||
BITNESS = '64'
|
||||
description = 'Build the 64-bit windows calibre installer'
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue