wok-next view fbvnc-auth/receipt @ rev 20458

Unlock x86_64 architecture
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 02 12:12:14 2018 +0200 (2018-03-02)
parents 51c17c81e266
children e1c0edabdcb2
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"
15 # Git must be installed in a cross chroot
16 case "$ARCH" in
17 i?86) BUILD_DEPENDS="git" ;;
18 esac
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 sed -i s"/cc/${HOST_SYSTEM}-gcc/" Makefile &&
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 }