wok view vnc2swf/receipt @ rev 10471

tazwikiss: add compile_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 25 11:47:30 2011 +0200 (2011-05-25)
parents eaabe08708e2
children e53e5e4b0f9e
line source
1 # SliTaz package receipt.
3 PACKAGE="vnc2swf"
4 VERSION="0.5.0"
5 CATEGORY="network"
6 SHORT_DESC="VNC recorder"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.unixuser.org/~euske/vnc2swf"
10 WGET_URL="$WEB_SITE/$TARBALL"
11 DEPENDS="gcc-lib-base glibc-base xorg-libICE xorg-libSM xorg-libX11 \
12 xorg-libXau xorg-libXaw xorg-libXdmcp xorg-libXext xorg-libXmu xorg-libXpm \
13 xorg-libXt zlib "
14 BUILD_DEPENDS="xorg-libICE-dev xorg-libSM-dev xorg-libX11-dev \
15 xorg-libXau-dev xorg-libXaw-dev xorg-libXdmcp-dev xorg-libXext-dev \
16 xorg-libXmu-dev xorg-libXpm-dev xorg-libXt-dev zlib-dev"
17 SUGGESTED="x11vnc"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 ./configure --prefix=/usr $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$src/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/
32 cp -a $_pkg/usr/X11R6/bin/ $fs/usr/
33 }