wok-next view fbvnc/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 38c69652a653
children e1c0edabdcb2
line source
1 # SliTaz package receipt.
3 PACKAGE="fbvnc"
4 VERSION="20130314"
5 CATEGORY="network"
6 SHORT_DESC="VNC client in frame buffer."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://repo.or.cz/w/fbvnc.git"
11 WGET_URL="git|git://repo.or.cz/fbvnc.git"
12 TAGS="vnc remote-desktop"
14 # Git must be installed in a cross chroot
15 case "$ARCH" in
16 i?86) BUILD_DEPENDS="git" ;;
17 esac
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 #patch -p0 < $stuff/fbvnc.u &&
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 }