wok annotate novnc/receipt @ rev 13147

btanks: fix compile_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 10 13:28:48 2012 +0200 (2012-07-10)
parents c380532e1854
children d1b6fe8c8301
rev   line source
pascal@11212 1 # SliTaz package receipt.
pascal@11212 2
pascal@11212 3 PACKAGE="novnc"
gokhlayeh@11575 4 VERSION="201111004"
pascal@11212 5 CATEGORY="network"
pascal@11212 6 SHORT_DESC="VNC client in javascript."
pascal@11212 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@11212 8 WEB_SITE="http://github.com/kanaka/noVNC"
gokhlayeh@11575 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
gokhlayeh@11575 10 WGET_URL="git|git://github.com/kanaka/noVNC.git"
pascal@13034 11 TAGS="vnc remote-desktop"
pascal@11212 12
pascal@11212 13 DEPENDS="python python-numpy"
gokhlayeh@11575 14 BUILD_DEPENDS="python python-pil openssl git"
pascal@11212 15 SUGGESTED="pyopenssl openssl"
pascal@11212 16
pascal@11212 17 # Rules to configure and make the package.
pascal@11212 18 compile_rules()
pascal@11212 19 {
pascal@11212 20 cd $src
pascal@11212 21 mkdir -p $DESTDIR
pascal@11212 22 sed -i 's/bash/sh/;s/ps -p \([^ ]*\)/ps | grep "^ *\1 "/' utils/launch.sh
pascal@11212 23 IMAGE=/usr/share/images/slitaz-background.jpg
pascal@11212 24 [ -s $IMAGE ] && utils/img2js.py $IMAGE noVNC_logo > include/logo.js
pascal@11212 25 cp -a *.html images/favicon.ico utils include $DESTDIR
pascal@11212 26 }
pascal@11212 27
pascal@11212 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11212 29 genpkg_rules()
pascal@11212 30 {
pascal@11212 31 mkdir -p $fs/usr/share/novnc
pascal@11212 32 cp -a $_pkg/* $fs/usr/share/novnc
pascal@11212 33 }
pascal@11212 34
pascal@11212 35 port_install()
pascal@11212 36 {
pascal@11212 37 which openssl > /dev/null &&
pascal@11212 38 openssl req -new -x509 -keyout $1/usr/share/novnc/self.pem \
pascal@11212 39 -out $1/usr/share/novnc/self.pem -days 3650 -nodes <<EOT
pascal@11212 40 $(. /etc/locale.conf ; echo ${LANG#*_})
pascal@11212 41 $(cat /etc/TZ)
pascal@11212 42
pascal@11212 43 $(cat /etc/hostname)
pascal@11212 44
pascal@11212 45
pascal@11212 46
pascal@11212 47 EOT
pascal@11212 48 }