wok view libvncserver/receipt @ rev 19882

bluez: add SIM access profile support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 03 10:59:15 2017 +0200 (2017-04-03)
parents 6cd6d4cf6628
children 65d7d867e0c1
line source
1 # SliTaz package receipt.
3 PACKAGE="libvncserver"
4 VERSION="0.9.9"
5 CATEGORY="network"
6 SHORT_DESC="The vnc library"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 SOURCE="LibVNCServer"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://libvncserver.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="jpeg zlib libssl"
15 BUILD_DEPENDS="jpeg-dev zlib openssl-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 $CONFIGURE_ARGS &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }