wok-6.x annotate fltk/receipt @ rev 4090
Fix: wxWidgets build (patch gsockgtk.cpp)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Thu Sep 17 12:34:08 2009 +0200 (2009-09-17) |
parents | 3eacc9c96968 |
children | c9c3cd46aa1a |
rev | line source |
---|---|
pankso@627 | 1 # SliTaz package receipt. |
pankso@627 | 2 |
pankso@627 | 3 PACKAGE="fltk" |
pascal@1492 | 4 VERSION="1.1.9" |
pankso@627 | 5 CATEGORY="system-tools" |
pankso@627 | 6 SHORT_DESC="Fast Light Tool Kit (provide fluid)." |
pankso@627 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@2486 | 8 DEPENDS="expat fontconfig freetype jpeg xorg-libX11 xorg-libXau xorg-libXdmcp \ |
pascal@2515 | 9 xorg-libXext xorg-libXft xorg-libXrender zlib libpng" |
pascal@1511 | 10 BUILD_DEPENDS="xorg-dev" |
pankso@627 | 11 TARBALL="$PACKAGE-$VERSION-source.tar.bz2" |
pankso@627 | 12 WEB_SITE="http://www.fltk.org/" |
pascal@1492 | 13 WGET_URL="http://ftp.easysw.com/pub/fltk/$VERSION/$TARBALL" |
pankso@627 | 14 |
pankso@627 | 15 # Rules to configure and make the package. |
pankso@627 | 16 compile_rules() |
pankso@627 | 17 { |
pankso@627 | 18 cd $src |
pankso@627 | 19 ./configure \ |
pankso@627 | 20 --prefix=/usr \ |
pankso@627 | 21 --mandir=/usr/share/man \ |
pankso@627 | 22 --enable-shared \ |
pankso@627 | 23 --enable-xft \ |
pascal@1492 | 24 $CONFIGURE_ARGS && |
pascal@1492 | 25 make && |
pankso@627 | 26 make DESTDIR=$PWD/_pkg install |
pankso@627 | 27 } |
pankso@627 | 28 |
pankso@627 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@627 | 30 genpkg_rules() |
pankso@627 | 31 { |
pankso@627 | 32 mkdir -p $fs/usr/bin $fs/usr/lib $fs/usr/share/pixmaps |
pankso@627 | 33 cp -a $_pkg/usr/bin/fluid $fs/usr/bin |
pankso@627 | 34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@627 | 35 cp $src/fluid/icons/fluid-32.png $fs/usr/share/pixmaps/fluid.png |
pankso@627 | 36 } |