wok view wine/receipt @ rev 11545

Add autoblog form wok-undigest
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Dec 25 15:18:49 2011 +0100 (2011-12-25)
parents 940b5937e496
children 8e4c74abdf74
line source
1 # SliTaz package receipt.
3 PACKAGE="wine"
4 VERSION="1.2.3"
5 CATEGORY="misc"
6 SHORT_DESC="Windows API for Linux."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 DEPENDS="alsa-lib libxml2 libxslt mesa libglu-mesa xorg-libICE xorg-libSM
9 xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXext libgphoto2 libtool lcms \
10 esound freetype"
11 BUILD_DEPENDS="flex bison mesa-dev freetype-dev"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WEB_SITE="http://www.winehq.org/"
14 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 TAGS="windows"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
22 patch -p1 < $stuff/wine-1.2-cdrom.c.u || return 1
24 ./configure $CONFIGURE_ARGS &&
25 make -j 4 && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib/wine $fs/usr/share
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/share/wine $fs/usr/share
34 cp -a $_pkg/usr/share/applications $fs/usr/share
35 cp -a $_pkg/usr/lib/lib* $fs/usr/lib
36 cp -a $_pkg/usr/lib/wine/*.so $fs/usr/lib/wine
37 }
39 post_install()
40 {
41 modprobe snd-seq 2>/dev/null
42 }