Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Explain how to use Makefile to install stable release #2098

Merged
merged 1 commit into from
Dec 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ The ```winetricks``` package should be used if it is available and up to date. T

Note: packaged Debian / Ubuntu winetricks versions are typically outdated, so a manual installation is recommended.

## Manual Install

If the package is unavailable, outdated, or the latest version is desired, a manual installation of winetricks can be done.
It is _highly_ recommended to uninstall any previously installed version of winetricks first.

Expand All @@ -38,8 +40,17 @@ E.g. for Debian / Ubuntu:
sudo apt-get purge winetricks
```

Then, for Ubuntu, use a shell script to download the current winetricks script(s).
E.g.:
### Installing The Latest Stable Release

Download the latest release from [Github](https://github.com/Winetricks/winetricks/releases/latest).

Extract the archive and `cd` into the extracted folder.

Run `sudo make install` to install Winetricks system-wide.

### Scripted Install

You can use a shell script to download the current winetricks script(s):

```
#!/bin/sh
Expand Down Expand Up @@ -125,7 +136,6 @@ su root sh -c 'mv update_winetricks /usr/bin/'

To use ```curl``` instead of ```wget```: substitute all ```wget``` calls with ```curl -O```, in the winetricks update script.


# Updating
Using the traditional Unix crontab...
```
Expand Down