blob: 38db5ab323496ccf29fde77ff5da76546b9425fb (
plain)
1 # Description: WINE - Implementation of Windows DLL's and core.
2 # URL: http://www.winehq.com/
3 # Packager: Daniel Walpole, daniel at walpole dot id dot au
4 # Maintainer: Antti Nykanen, aon at iki dot fi
5 # Depends on: fontforge
6
7 name=wine
8 version=0.9.53
9 release=1
10 source=(http://ibiblio.org/pub/linux/system/emulators/wine/wine-$version.tar.bz2)
11
12 build() {
13 cd $name-$version
14 ./configure \
15 --prefix=/usr \
16 --mandir=$PKG/usr/man \
17 --disable-nls
18 make depend
19 make
20 make prefix=$PKG/usr install
21 rm -rf $PKG/usr/man/{de,fr}.UTF-8
22 }
|