wok view wxpython/receipt @ rev 12001

fceux: fix compile_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 05 14:43:15 2012 +0100 (2012-03-05)
parents 3419fd419665
children 13d730617dad
line source
1 # SliTaz package receipt.
3 PACKAGE="wxpython"
4 VERSION="2.8.12.1"
5 CATEGORY="x-window"
6 SHORT_DESC="GUI toolkit for the Python programming language."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="python gtk+"
9 BUILD_DEPENDS="python-dev gtk+-dev"
10 SOURCE="wxPython"
11 TARBALL="$SOURCE-src-$VERSION.tar.bz2"
12 WEB_SITE="http://www.wxpython.org/"
13 WGET_URL="$SF_MIRROR/wxpython/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --without-sdl \
21 $CONFIGURE_ARGS &&
22 make $MAKEFLAGS &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin $fs/usr/lib
30 cp -a $_pkg/usr/bin/wxrc* $fs/usr/bin
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 }