You are not logged in.
Pages: 1
Hi, when I searched the AUR I saw that the current wine package was the 0.9.50 version, but the latest version is 0.9.52.
I would like to build wine so that I can manage it as package with pacman if I want to remove it. Could anyone help me how I would do this?
Thanks!
Last edited by helino (2008-01-06 15:10:51)
AMD Athlon 64 3200+ // Asus K8V-VM // 1024 MB DDR 400 // Asus EN7600 GS // Soundblaster Live! // FSP 350W
Offline
First it's not 0.9.5.2 - It's 0.9.52
To build the newer version yourself download the official wine PKGBUILD, put it in a dir, open it using text editor, change the version from 0.9.50 to 0.9.52, comment out the md5sum and issue makepkg.
My victim you are meant to be
No, you cannot hide nor flee
You know what I'm looking for
Pleasure your torture, I will endure...
Offline
First it's not 0.9.5.2 - It's 0.9.52
I've changed that now in the post, stupid typo
To build the newer version yourself download the official wine PKGBUILD, put it in a dir, open it using text editor, change the version from 0.9.50 to 0.9.52, comment out the md5sum and issue makepkg.
Thanks a lot, I will try this!
AMD Athlon 64 3200+ // Asus K8V-VM // 1024 MB DDR 400 // Asus EN7600 GS // Soundblaster Live! // FSP 350W
Offline
# canistra canistra@gmail.com
_pkgsourcename=wine
pkgname=wine
pkgver=0.9.52
pkgrel=1
pkgrel32=1
pkgdesc="Interperenter for the Windows 3.x and Win32 APIs"
arch=('i686')
url="http://www.winehq.com/"
license=('LGPL')
depends=('freetype2' 'fontconfig' 'libjpeg' 'libungif' 'alsa-lib' 'glut' 'libldap' 'libxslt' 'lcms' 'libxxf86dga'
'freeglut' 'libxinerama' 'libxcursor' 'libxrandr' 'libxrender' 'libxdamage' )
provides=('wine')
conflicts=('wine')
install=()
source=(http://easynews.dl.sourceforge.net/sourceforge/wine/wine-$pkgver.tar.bz2)
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc --enable-opengl --with-x
make depend || return 1
make || return 1
make prefix=$startdir/pkg/usr install || return 1
# expand conflicts with textutils ( doesn't exist anymore ? )
# mv $startdir/pkg/usr/bin/expand $startdir/pkg/usr/bin/wine-expand || return 1
mkdir -p $startdir/pkg/etc/wine
# mkdir -p $startdir/pkg/etc/profile.d
# cp -r $startdir/src/$pkgname-$pkgver/documentation/samples $startdir/pkg/etc/wine
}
Offline
Or if you have enough time you can try to build the wine-git package. It should be uptodate the most time
Offline
I did as Dheart wrote and everything worked perfect,
thanks for all your help
AMD Athlon 64 3200+ // Asus K8V-VM // 1024 MB DDR 400 // Asus EN7600 GS // Soundblaster Live! // FSP 350W
Offline
Change title to (solved)
Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit! X-ray confirms Iam spineless!
Offline
Pages: 1