|
@@ -10,22 +10,30 @@ import argparse
|
|
|
|
|
|
|
|
|
wine = '/usr/bin/wine'
|
|
|
-bottledir = Path(Path.home(), '.punt/bottles')
|
|
|
+
|
|
|
+puntdir = Path(Path.home(), '.punt')
|
|
|
+bottledir = Path(puntdir, 'bottles')
|
|
|
bottledir.mkdir(parents=True, exist_ok=True)
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
# minimum start:
|
|
|
#
|
|
|
# $ punt install bottle bleh.exe
|
|
|
#
|
|
|
|
|
|
|
|
|
-def run(bottle, exe):
|
|
|
+def run(bottle, exe, args=[]):
|
|
|
newdir = bottledir / bottle
|
|
|
newenv = deepcopy(environ)
|
|
|
newenv.update({'WINEPREFIX': str(newdir)})
|
|
|
- check_call([wine, exe], env=newenv)
|
|
|
+ check_call([wine, exe] + args, env=newenv)
|
|
|
+
|
|
|
|
|
|
+def rm(bottle):
|
|
|
+ # shutil.rmtree
|
|
|
+ pass
|
|
|
|
|
|
|
|
|
|
|
@@ -56,7 +64,7 @@ if __name__ == '__main__':
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
- if 'arg' in var(args):
|
|
|
+ if 'arg' in args:
|
|
|
run(args.bottle, args.app, [ x.lstrip() for x in args.arg])
|
|
|
else:
|
|
|
run(args.bottle, args.app, [])
|