wok view libvncserver/receipt @ rev 14718

lib[s-z]*: add LICENSE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 11 11:57:36 2013 +0200 (2013-06-11)
parents 1ec5c8f3e8a6
children 6cd6d4cf6628
line source
1 # SliTaz package receipt.
3 PACKAGE="libvncserver"
4 VERSION="0.9.8.2"
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"
15 BUILD_DEPENDS="jpeg-dev zlib"
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 }