wok annotate fbvnc-auth/receipt @ rev 21904

updated shaarlo ( -> 0.3.1)
author Hans-G?nter Theisgen
date Fri Oct 04 13:53:43 2019 +0100 (2019-10-04)
parents e6eab2a29e8b
children d8c511e24c20
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 HOST_ARCH="i486 arm"
pascal@17016 15
pascal@17016 16 # Git must be installed in a cross chroot
pascal@17016 17 case "$ARCH" in
pascal@17016 18 i?86) BUILD_DEPENDS="git" ;;
pascal@17016 19 esac
pascal@17016 20
pascal@17016 21 # Rules to configure and make the package.
pascal@17016 22 compile_rules()
pascal@17016 23 {
pascal@17017 24 sed -i s"/cc/${HOST_SYSTEM}-gcc/" Makefile &&
pascal@17016 25 make
pascal@17016 26 }
pascal@17016 27
pascal@17016 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17016 29 genpkg_rules()
pascal@17016 30 {
pascal@17016 31 mkdir -p $fs/usr/bin
pascal@17016 32 cp -a $src/fbvnc $fs/usr/bin
pascal@17016 33 }