aboutsummaryrefslogtreecommitdiff
path: root/src/wine.c
diff options
context:
space:
mode:
authorJan200101 <sentrycraft123@gmail.com>2020-12-05 13:52:49 +0100
committerJan200101 <sentrycraft123@gmail.com>2020-12-05 13:52:49 +0100
commit199d133a9c46a548e6e0e2a757aa81c955c137ce (patch)
tree1ac6d92477d1a2284d09c9ae1cf39b5de19ddefd /src/wine.c
parentc39ab7bbbf88b7dfdd05123994db1f0e580c7e43 (diff)
downloadpolecat-199d133a9c46a548e6e0e2a757aa81c955c137ce.tar.gz
polecat-199d133a9c46a548e6e0e2a757aa81c955c137ce.zip
add wine env command […]
- wine env outputs a POSIX compatible env string to add a wine installation to your current PATH - outputs human readable messages to stderr so they are not swallowed by the shell
Diffstat (limited to 'src/wine.c')
-rw-r--r--src/wine.c83
1 files changed, 83 insertions, 0 deletions
diff --git a/src/wine.c b/src/wine.c
index 9a13aed..b19630a 100644
--- a/src/wine.c
+++ b/src/wine.c
@@ -227,6 +227,89 @@ int wine_installed(int argc, char** argv)
return 0;
}
+int wine_env(int argc, char** argv)
+{
+ if (argc > 1)
+ {
+ char winepath[PATH_MAX];
+ char* winebinloc = NULL; // to be set by the wine type check
+ getWineDir(winepath, sizeof(winepath));
+ char* winever = argv[1];
+
+ strncat(winepath, "/", sizeof(winepath) - strlen(winepath) - 1);
+ strncat(winepath, winever, sizeof(winepath) - strlen(winepath) - 1);
+
+ if (!isDir(winepath))
+ {
+
+ // if the wine version does not exist try appending the system arch e.g. x86_64
+ struct utsname buffer;
+
+ if (!uname(&buffer))
+ {
+ strncat(winepath, "-", sizeof(winepath) - strlen(winepath) - 1);
+ strncat(winepath, buffer.machine, sizeof(winepath) - strlen(winepath) - 1);
+ }
+
+ // if it still doesn't exist tell this wine version is not installed
+ if (!isDir(winepath))
+ {
+ fprintf(stderr, "`%s' is not an installed wine version\n", winever);
+ return 0;
+ }
+ }
+
+ switch(check_wine_ver(winepath, sizeof(winepath)+1))
+ {
+ case WINE_NORMAL:
+ winebinloc = WINEBIN;
+ break;
+
+ case WINE_PROTON:
+ winebinloc = PROTONBIN;
+ break;
+
+ default:
+ #ifdef DEBUG
+ fprintf(stderr, "Couldn't find figure out if this `%s' is Wine or Proton, defaulting to Wine", winever);
+ #endif
+ winebinloc = WINEBIN;
+ break;
+ }
+
+ strncat(winepath, winebinloc, sizeof(winepath) - strlen(winepath) - 1);
+
+ if (isFile(winepath))
+ {
+ winepath[strlen(winepath) - strlen("wine")] = '\0';
+ if (isatty(STDOUT_FILENO))
+ {
+ puts("To add a wine installation to your PATH\n"
+ "you have to eval polecats output eval\n"
+ "the output (or your shells equivelent)\n\n"
+ " eval `polecat wine env <version>`");
+ }
+ else
+ {
+ printf("PS1=\"(%s)$PS1\"\nPATH=\"%s:$PATH\"\n", winever, winepath);
+ }
+ //printf("PATH=\"%s\"\n# Run this code in your Terminal\n# by running eval `%s`", newpath, argv[0]);
+ }
+ else
+ {
+ fprintf(stderr, "cannot find wine for `%s'\n", winever);
+ }
+
+ }
+ else
+ {
+ fprintf(stderr, "Specify a what wine version to run.\nUse `" NAME " wine list-installed' to list available versions\n");
+ }
+
+
+ return 0;
+}
+
int wine_help(int argc, char** argv)
{
puts(USAGE_STR " wine <command>\n\nList of commands:");