wok view wxWidgets/receipt @ rev 15653

Up wxWidgets (2.9.5)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Dec 11 12:52:13 2013 +0100 (2013-12-11)
parents 23c3aed67cd9
children 66a241839093
line source
1 # SliTaz package receipt.
3 PACKAGE="wxWidgets"
4 VERSION="2.9.5"
5 CATEGORY="x-window"
6 SHORT_DESC="Cross-platform GUI Library"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.wxwidgets.org/"
11 WGET_URL="$SF_MIRROR/wxwindows/$TARBALL"
13 DEPENDS="glib glibc-base gcc-lib-base libgio pkg-config expat zlib atk \
14 gtk+ cairo fontconfig freetype jpeg libpng tiff pango pixman util-linux-uuid \
15 xorg-libSM xorg-libICE xorg-libX11 xorg-libXau xorg-libXcomposite \
16 xorg-libXcursor xorg-libXdamage xorg-libXdmcp xorg-libXext libglu-mesa \
17 xorg-libXfixes xorg-libXinerama xorg-libXrender xorg-libXxf86vm mesa"
18 BUILD_DEPENDS="pkg-config gtk+ gtk+-dev expat-dev zlib-dev \
19 xorg-dev xorg-xineramaproto libglu-mesa mesa-dev libpng-dev tiff-dev \
20 jpeg-dev xorg-libXpm-dev patch"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 cd $src
26 ./configure \
27 --enable-shared \
28 --enable-unicode \
29 --with-opengl \
30 --with-libpng=sys \
31 --with-libxpm=sys \
32 --with-libjpeg=sys \
33 --with-libtiff=sys \
34 --enable-graphics_ctx \
35 --enable-unicode \
36 $CONFIGURE_ARGS &&
37 make &&
38 make DESTDIR=$DESTDIR install &&
39 cd $src/contrib &&
40 make &&
41 make DESTDIR=$DESTDIR install
42 }
44 # Rules to gen a SliTaz package suitable for Tazpkg.
45 genpkg_rules()
46 {
47 mkdir -p $fs/usr
48 # Copy libs and contrib libs.
49 cp -a $install/usr/lib/ $fs/usr/
50 # Remove devel files.
51 rm -rf $fs/usr/lib/wx/include
52 }