wok view fbvnc/receipt @ rev 14943

Up: edbus (1.7.8)
author Dominique Corbex <domcox@slitaz.org>
date Thu Aug 08 19:15:48 2013 +0200 (2013-08-08)
parents b2a632fc9587
children 38c69652a653
line source
1 # SliTaz package receipt.
3 PACKAGE="fbvnc"
4 VERSION="20110416"
5 CATEGORY="network"
6 SHORT_DESC="VNC client in frame buffer."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://repo.or.cz/w/fbvnc.git"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 TAGS="vnc remote-desktop"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 [ -s $SOURCES_REPOSITORY/$TARBALL ] ||
17 wget -O $SOURCES_REPOSITORY/$TARBALL \
18 $WEB_SITE/snapshot/e42bc02b14b3331e7c7f45c6b42179d0af99ed7b.tar.gz
19 mkdir -p $src
20 cd $src
21 tar xzf $SOURCES_REPOSITORY/$TARBALL
22 mkdir $DESTDIR
23 cd fbvnc
24 patch -p0 < $stuff/fbvnc.u &&
25 make && cp fbvnc $DESTDIR
26 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/bin
33 cp $install/fbvnc $fs/usr/bin
34 }