wok view guacamole/receipt @ rev 17532

Add guacamole
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jan 21 12:25:55 2015 +0100 (2015-01-21)
parents
children 672406e5f118
line source
1 # SliTaz package receipt.
3 PACKAGE="guacamole"
4 VERSION="0.9.4"
5 CATEGORY="network"
6 SHORT_DESC="Cientless remote desktop gateway for VNC or RDP"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-server-$VERSION.tar.gz"
10 WEB_SITE="http://guac-dev.org/"
11 WGET_URL="$SF_MIRROR/project/$PACKAGE/current/source/$TARBALL"
13 DEPENDS="cairo ossp-uuid libxml2 libvorbis"
14 BUILD_DEPENDS="cairo-dev ossp-uuid-dev libxml2-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR 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/sbin $fs/usr
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }