wok-next annotate 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
rev   line source
pascal@17016 1 # SliTaz package receipt.
pascal@17016 2
pascal@17016 3 PACKAGE="fbvnc-auth"
pascal@17016 4 VERSION="1.0.2"
pascal@17016 5 CATEGORY="network"
pascal@17016 6 SHORT_DESC="VNC client in frame buffer with authentication."
pascal@17016 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17016 8 LICENSE="GPL2"
pascal@17016 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@17016 10 WEB_SITE="https://github.com/zohead/fbvnc"
pascal@17016 11 WGET_URL="git|git://github.com/zohead/fbvnc.git"
pascal@17016 12 PROVIDE="fbvnc"
pascal@17016 13 TAGS="vnc remote-desktop"
pascal@17016 14
pascal@17016 15 # Git must be installed in a cross chroot
pascal@17016 16 case "$ARCH" in
pascal@17016 17 i?86) BUILD_DEPENDS="git" ;;
pascal@17016 18 esac
pascal@17016 19
pascal@17016 20 # Rules to configure and make the package.
pascal@17016 21 compile_rules()
pascal@17016 22 {
pascal@17017 23 sed -i s"/cc/${HOST_SYSTEM}-gcc/" Makefile &&
pascal@17016 24 make
pascal@17016 25 }
pascal@17016 26
pascal@17016 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17016 28 genpkg_rules()
pascal@17016 29 {
pascal@17016 30 mkdir -p $fs/usr/bin
pascal@17016 31 cp -a $src/fbvnc $fs/usr/bin
pascal@17016 32 }