wok-next annotate fltk/receipt @ rev 14140
libnet(-dev): up 1.1.6
author | Samuel Trassare <samuel_trassare@yahoo.com> |
---|---|
date | Fri Mar 01 08:15:54 2013 -0800 (2013-03-01) |
parents | 82c4cce3b3f8 |
children | a00bf44ed23d |
rev | line source |
---|---|
pankso@627 | 1 # SliTaz package receipt. |
pankso@627 | 2 |
pankso@627 | 3 PACKAGE="fltk" |
devl547@11260 | 4 VERSION="1.3.0" |
pankso@627 | 5 CATEGORY="system-tools" |
pankso@627 | 6 SHORT_DESC="Fast Light Tool Kit (provide fluid)." |
pankso@627 | 7 MAINTAINER="pankso@slitaz.org" |
devl547@11260 | 8 TARBALL="$PACKAGE-$VERSION-source.tar.gz" |
pankso@627 | 9 WEB_SITE="http://www.fltk.org/" |
pascal@1492 | 10 WGET_URL="http://ftp.easysw.com/pub/fltk/$VERSION/$TARBALL" |
pankso@627 | 11 |
pascal@13796 | 12 DEPENDS="expat fontconfig freetype libpng jpeg xorg-libX11 xorg-libXau xorg-libXdmcp \ |
pascal@13796 | 13 xorg-libXext xorg-libXft xorg-libXrender zlib libpng gcc-lib-base mesa libglu-mesa" |
pascal@13796 | 14 BUILD_DEPENDS="jpeg-dev libpng-dev libglu-mesa libglu-mesa-dev mesa mesa-dev" |
pascal@13796 | 15 |
pankso@627 | 16 # Rules to configure and make the package. |
pankso@627 | 17 compile_rules() |
pankso@627 | 18 { |
pankso@627 | 19 cd $src |
pankso@627 | 20 ./configure \ |
pankso@627 | 21 --prefix=/usr \ |
pankso@627 | 22 --mandir=/usr/share/man \ |
pankso@627 | 23 --enable-shared \ |
pankso@627 | 24 --enable-xft \ |
slaxemulator@6557 | 25 --enable-threads \ |
pascal@1492 | 26 $CONFIGURE_ARGS && |
devl547@11260 | 27 make $MAKEFLAGS && |
pascal@13796 | 28 make DESTDIR=$DESTDIR install |
pankso@627 | 29 } |
pankso@627 | 30 |
pankso@627 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@627 | 32 genpkg_rules() |
pankso@627 | 33 { |
pankso@627 | 34 mkdir -p $fs/usr/bin $fs/usr/lib $fs/usr/share/pixmaps |
pascal@13796 | 35 cp -a $install/usr/bin/fluid $fs/usr/bin |
pascal@13796 | 36 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@627 | 37 cp $src/fluid/icons/fluid-32.png $fs/usr/share/pixmaps/fluid.png |
pankso@627 | 38 } |