





wolverine_tech wrote:OK, so it does work on LMDE then. Here's a suggestion - Perhaps it'll be a good idea to write-up:
what steps you took (in their proper sequence),
what changes you made to your source list,
which file you downloaded,
your hardware info, your OS info (64-bit, 32-bit...)
any other details that you might feel are important...
include appropriate screenshots and bash code outputs
and post it at the end of this thread, or even better, as a separate thread, coz the previous posts (including mine) are too 'sparse' for beginners. I am still finding my way around Linux and the steps involved above were quite overwhelming when I tried them first.
./configuremakesudo checkinstall make install

hopefully it will be of some help to someone.



sudo checkinstall make install
Done. The new package has been installed and saved to
/home/anthrogue/Downloads/wine-1.3.33/wine_1.3.33-1_i386.deb




#Essentials for building packages
sudo apt-get install build-essential devscripts fakeroot
#Wine dependencies
sudo apt-get install libxt-dev libxkbfile-dev libxxf86dga-dev libxxf86vm-dev freeglut3-dev libxmu-dev libncurses5-dev libcups2-dev libopenal-dev libasound2-dev oss4-dev libsane-dev libusb-dev libgsm1-dev libmpg123-dev libcapi20-dev libhal-dev libdbus-1-dev libgphoto2-2-dev liblcms1-dev libldap2-dev libgnutls-dev libxslt1-dev unixodbc-dev prelink sharutils gcc-multilib libgstreamer-plugins-base0.10-dev
#Wine 64bit additional dependencies
sudo apt-get install ia32-libs-dev lib32z1-dev lib32v4l-dev lib32ncurses5-dev lib32asound2-dev
mkdir winebuild
cd winbuild
# Wine source for debian as of Dec 1, 2012
# found at: http://dev.carbon-project.org/debian/wine-unstable/
# this portion here will require adjustment for newer versions of wine
wget http://dev.carbon-project.org/debian/wine-unstable/wine-unstable_1.3.33.orig.tar.bz2
wget http://dev.carbon-project.org/debian/wine-unstable/wine-unstable_1.3.33-0.1.debian.tar.bz2
wget http://dev.carbon-project.org/debian/wine-unstable/wine-unstable_1.3.33-0.1.dsc
tar xzvf wine-unstable_1.3.33.orig.tar.bz2
cd wine-1.3.33
tar xzvf ../wine-unstable_1.3.33-0.1.debian.tar.bz2
#Perform the actual build
debuild -uc -us
cd ..
#Install the packages
sudo dpkg -i *.deb







Originally posted by Curan
- If you don't know me, you shouldn't trust me. Installation of binary packages from unknown sources is strongly discouraged! If you still want the Debian package below, download the source package (the source package is signed with my OpenPGP key, which is signed by several Debian Developers and can be obtained from keyring.debian.org, which only distributes keys of Debian Maintainers and Debian Developers) and verify the changes I've made in the .debian.tar.bz2. The .orig.tar.bz2 should have the same MD5 hash (c9242ff56223186124c1d42ceb03afe4) as upstream's tarball (if not, download the .tar.bz2 tarball from winehq.org and use it as the .orig.tar.bz2). Then build the binary yourself.
- As I get quite a few e-mails about this: no I won't set up an APT repository for these packages, because I don't want to encourage people to install binary packages from third parties without thinking about what they're doing.
#!/bin/bash
# To use:
# Read the warnings on: http://dev.carbon-project.org/debian/wine-unstable/
# Run as root or with sudo
# This will use arch to automatically guess your architecture, but you may
# override it by passing the architecture in the command line. Either: amd64
# or i386
# Run as root!
if [ $(id -u) -ne 0 ]; then
echo "$0 must be run as root"
exit 1
fi
if [ "$1" == 'amd64' ] || [ "$1" == 'i386' ]; then arch="$1"
elif [ "$1" == '64' ]; then arch="amd64"
elif [ "$1" == '32' ]; then arch="i386"
elif [ -n "$1" ]; then echo "Unknown/unusable architecture"; exit 1
else
arch=`arch || uname -m`
if [ "$arch" == "x86_64" ]; then arch='amd64'
elif [ "${arch:0:1}" == "i" ] && [ "${arch:2}" == "86" ]; then arch='i386'
fi
fi
cd /tmp
wget --base="http://dev.carbon-project.org/debian/wine-unstable/" -nd \
"http://dev.carbon-project.org/debian/wine-unstable/" -F -c \
-A "_$arch.deb" -e robots=off --ignore-tags=link -r -l 1
dpkg -i libwine-*.deb wine*.deb
rm libwine-*.deb wine*.deb



tdockery97 wrote:ckosloff wrote:Please somebody post easy to follow instructions for this installation.
I followed the link that tdockery mentioned, but found instructions too advanced for my present level.
OK, here goes:
1. Look for the list of packages for your architecture (32bit or 64bit)
2. Download each file in the list (there will be 18-19 files)
3. In your Downloads directory there will now be 18-19 .deb files
4. While in the Downloads directory, right-click on a blank space and select open in Terminal
5. Your command prompt should now look something like: tom@tom-laptop:~/Downloads$
6. Enter the following command:
- Code: Select all
sudo dpkg -i *.deb
7. All of those .deb files in Downloads will now be installed
8. Once it is done installing, you can delete all the .deb files in Downloads
9. Enjoy Wine 1.3
libwine-dev-unstable depends on libgettextpo0
libwine-capi-unstable depends on libcapi20-3sudo apt-get -f install

NeoMint wrote:If I haven't said already, just use Playonlinux.





Users browsing this forum: No registered users and 5 guests