wok view fox/receipt @ rev 4029

Update: h8300-gcc3 (add PROVIDE)
author Matthew Sheets <rcx@zoominternet.net>
date Sat Sep 05 15:03:56 2009 +0000 (2009-09-05)
parents 8e7cd625ccfe
children 9f19aee613be
line source
1 # SliTaz package receipt.
3 PACKAGE="fox"
4 VERSION="1.6.36"
5 CATEGORY="x-window"
6 SHORT_DESC="Fox toolkit."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 DEPENDS="libpng jpeg tiff xorg-libXft bzlib libgl libglu"
10 BUILD_DEPENDS="$DEPENDS libpng-dev jpeg-dev tiff-dev xorg-libXft-dev"
11 SUGGESTED="adie calculator pathfinder shutterbug"
12 WEB_SITE="http://www.fox-toolkit.org/"
13 WGET_URL="http://www.fox-toolkit.org/ftp/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 --with-xft \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 }