opt/wine/Pkgfile

65 lines
1.8 KiB
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: WINE - Implementation of Windows DLL's and core.
# URL: http://www.winehq.com/
2014-11-10 13:25:50 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Daniel Walpole, daniel at walpole dot id dot au
# Depends on: fontconfig-32 freeglut-32 gnutls-32 lcms2-32 mpg123-32 openal-32 prelink xorg-libxcomposite-32 xorg-libxcursor-32 xorg-libxinerama-32 xorg-libxrandr-32 xorg-libxxf86dga-32 xorg-libxxf86vm-32
2006-02-23 16:26:10 +01:00
name=wine
2016-12-28 00:42:31 +01:00
version=2.0-rc3
2017-01-07 09:18:02 +01:00
release=2
2016-12-17 04:07:16 +01:00
source=(http://dl.winehq.org/wine/source/2.0/$name-$version.tar.bz2
2016-06-26 10:39:37 +02:00
http://dl.winehq.org/wine/wine-gecko/2.47/wine_gecko-2.47-x86.msi
http://dl.winehq.org/wine/wine-gecko/2.47/wine_gecko-2.47-x86_64.msi
2017-01-07 09:18:02 +01:00
http://dl.winehq.org/wine/wine-mono/4.6.4/wine-mono-4.6.4.msi
winhlp32-macro-flex-2.6.3-flex.patch)
2006-02-23 16:26:10 +01:00
build() {
install -d wine32 wine64
2011-10-17 13:12:25 +02:00
2016-01-12 01:11:11 +01:00
export CPPFLAGS="${CPPFLAGS/-D_FORTIFY_SOURCE=2/} -D_FORTIFY_SOURCE=0"
2016-03-08 08:00:01 +01:00
2017-01-07 09:18:02 +01:00
# undefined reference yywrap in winhlp32/macro.lex.yy.c
# when building with flex-2.6.3
patch -d $name-$version -p1 -i $SRC/winhlp32-macro-flex-2.6.3-flex.patch
cd wine64
../$name-$version/configure \
--prefix=/usr \
--libdir=/usr/lib \
--enable-win64
make depend
make
make DESTDIR=$PKG install
cd ../wine32
CFLAGS="${CFLAGS} -m32"
CXXFLAGS="${CXXFLAGS} -m32"
LDFLAGS="${LDFLAGS} -m32"
export PKG_CONFIG_LIBDIR="/usr/lib32/pkgconfig"
../$name-$version/configure \
2006-10-28 22:24:50 +02:00
--prefix=/usr \
--libdir=/usr/lib32 \
--x-includes=/usr/include/X11 \
--x-libraries=/usr/lib32 \
--cache-file=config.cache \
--with-wine64=../wine64
2011-10-17 13:12:25 +02:00
2006-02-23 16:26:10 +01:00
make depend
make
make DESTDIR=$PKG install
2012-10-28 14:24:01 +01:00
install -d $PKG/usr/share/wine/gecko
install -d $PKG/usr/share/wine/mono
install -t $PKG/usr/share/wine/gecko/ \
2016-06-26 10:39:37 +02:00
$SRC/wine_gecko-2.47-x86.msi \
$SRC/wine_gecko-2.47-x86_64.msi
2016-11-27 01:28:20 +01:00
install $SRC/wine-mono-4.6.4.msi $PKG/usr/share/wine/mono/
2012-10-28 14:24:01 +01:00
2015-12-20 10:28:24 +01:00
rm -r $PKG/usr/share/man/??.UTF-8
2006-02-23 16:26:10 +01:00
}