2017-03-12 01:44:18 +00:00
|
|
|
# Copyright 2017 Virgil Dupras
|
|
|
|
#
|
|
|
|
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
|
|
|
# which should be included with this package. The terms are also available at
|
|
|
|
# http://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
|
|
|
|
from argparse import ArgumentParser
|
|
|
|
|
2020-12-30 03:36:05 +00:00
|
|
|
# Modify the python path so the hscommon files in the dupeguru submodule may be used
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
sys.path.append(os.path.join(os.getcwd(), 'dupeguru'))
|
|
|
|
|
2017-03-12 01:44:18 +00:00
|
|
|
from hscommon.build import setup_package_argparser, package_cocoa_app_in_dmg
|
|
|
|
|
|
|
|
def parse_args():
|
|
|
|
parser = ArgumentParser()
|
|
|
|
setup_package_argparser(parser)
|
|
|
|
return parser.parse_args()
|
|
|
|
|
|
|
|
def package_cocoa(args):
|
2020-12-30 03:36:05 +00:00
|
|
|
app_path = 'build/Release/dupeGuru.app'
|
2017-03-12 01:44:18 +00:00
|
|
|
package_cocoa_app_in_dmg(app_path, '.', args)
|
|
|
|
|
|
|
|
def main():
|
|
|
|
args = parse_args()
|
|
|
|
print("Packaging dupeGuru with UI cocoa")
|
|
|
|
package_cocoa(args)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|