wok view fbvnc-auth/receipt @ rev 17016

Add fbvnc-auth
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 13 13:21:48 2014 +0200 (2014-08-13)
parents
children 51c17c81e266
line source
1 # SliTaz package receipt.
3 PACKAGE="fbvnc-auth"
4 VERSION="1.0.2"
5 CATEGORY="network"
6 SHORT_DESC="VNC client in frame buffer with authentication."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://github.com/zohead/fbvnc"
11 WGET_URL="git|git://github.com/zohead/fbvnc.git"
12 PROVIDE="fbvnc"
13 TAGS="vnc remote-desktop"
14 HOST_ARCH="i486 arm"
16 # Git must be installed in a cross chroot
17 case "$ARCH" in
18 i?86) BUILD_DEPENDS="git" ;;
19 esac
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 make
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/bin
31 cp -a $src/fbvnc $fs/usr/bin
32 }