How to update application on Debian?

7,150

Solution 1

Wine 1.4 is the latest official version in the debian repositories (see https://packages.debian.org/wheezy/wine).

But, you can install the sources from the wine website:

First you need to install required packages:

apt-get install flex bison qt3-dev-tools qt4-qmake

Then download the sources with wget:

wget http://prdownloads.sourceforge.net/wine/wine-1.6.tar.bz2

Unpack them:

tar -xjvf wine-1.6.*

And compile:

cd wine-1.6.*
./configure
cd tools; ./wineinstall

Solution 2

The correct way to do this is to backport Wine from unstable. This looks like it should be do-able, though perhaps not totally trivial. If you want more information on how to do this, please ask.

Share:
7,150

Related videos on Youtube

user61143
Author by

user61143

Updated on September 18, 2022

Comments

  • user61143
    user61143 almost 2 years

    When I run

     a@debianVM:~$ wine --version
    

    I get:

    wine-1.4.1
    

    And the website says: Latest stable release: Wine 1.6.2

    How to update?

  • user61143
    user61143 over 10 years
    Not working, probably 1.4 is the newest in official reppositories.
  • enedil
    enedil over 10 years
    The last wine version in repositories is 1.4.1.
  • phoops
    phoops over 10 years
    The question was quite generic thus my answer.