wok view wine/receipt @ rev 13847

frogatto: try to fix build (Boost 1.47 removed a deprecated function...) btw, we use boost 1.50
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Jan 09 01:13:47 2013 +0000 (2013-01-09)
parents d19159d4094b
children ef43b2bc3319
line source
1 # SliTaz package receipt.
3 PACKAGE="wine"
4 VERSION="1.5.20"
5 CATEGORY="misc"
6 SHORT_DESC="Windows API for Linux."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.winehq.org/"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
11 TAGS="windows"
13 DEPENDS="alsa-lib libxml2 libxslt mesa libglu-mesa xorg-dev lcms freetype"
14 BUILD_DEPENDS="alsa-lib-dev flex bison mesa-dev freetype-dev libtool \
15 libglu-mesa-dev libxml2-dev libxslt-dev lcms-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
22 ./configure $CONFIGURE_ARGS &&
23 make $MAKEFLAGS && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib/wine $fs/usr/share
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/share/wine $fs/usr/share
32 cp -a $install/usr/share/applications $fs/usr/share
33 cp -a $install/usr/lib/lib* $fs/usr/lib
34 cp -a $install/usr/lib/wine/*.so $fs/usr/lib/wine
35 }
37 post_install()
38 {
39 modprobe snd-seq 2>/dev/null
40 }