wok diff wxpython/receipt @ rev 5686

busybox: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jun 04 17:23:15 2010 +0200 (2010-06-04)
parents
children 49e501a55595
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/wxpython/receipt	Fri Jun 04 17:23:15 2010 +0200
     1.3 @@ -0,0 +1,34 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="wxpython"
     1.7 +VERSION="2.8.11.0"
     1.8 +CATEGORY="x-window"
     1.9 +SHORT_DESC="GUI toolkit for the Python programming language."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +DEPENDS="python gtk+"
    1.12 +BUILD_DEPENDS="python-dev gtk+-dev"
    1.13 +SOURCE="wxPython-src"
    1.14 +TARBALL="$SOURCE-$VERSION.tar.bz2"
    1.15 +WEB_SITE="http://www.wxpython.org/"
    1.16 +WGET_URL="$SF_MIRROR/$PACKAGE/wxPython/$VERSION/$TARBALL"
    1.17 +
    1.18 +# Rules to configure and make the package.
    1.19 +compile_rules()
    1.20 +{
    1.21 +    cd $src
    1.22 +    ./configure \
    1.23 +    	--prefix=/usr \
    1.24 +    	--mandir=/usr/share/man \
    1.25 +    	--without-sdl \
    1.26 +    	$CONFIGURE_ARGS &&
    1.27 +    make &&
    1.28 +    make DESTDIR=$PWD/_pkg install
    1.29 +}
    1.30 +
    1.31 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.32 +genpkg_rules()
    1.33 +{
    1.34 +	mkdir -p $fs/usr/bin $fs/usr/lib
    1.35 +	cp -a $_pkg/usr/bin/wxrc* $fs/usr/bin
    1.36 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.37 +}