wok view guacamole/receipt @ rev 21699

updated potamus (15 -> 17)
author Hans-G?nter Theisgen
date Wed Jun 05 17:53:51 2019 +0100 (2019-06-05)
parents d607766ba634
children 932cd974e081
line source
1 # SliTaz package receipt.
3 PACKAGE="guacamole"
4 VERSION="1.0.0"
5 CATEGORY="network"
6 SHORT_DESC="Clientless remote desktop gateway for VNC or RDP."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="Apache"
9 WEB_SITE="http://guacamole.apache.org/"
11 TARBALL="$PACKAGE-server-$VERSION.tar.gz"
12 #WGET_URL="$SF_MIRROR/project/$PACKAGE/current/source/$TARBALL"
13 WGET_URL="http://apache.org/dyn/closer.cgi?action=download&filename=$PACKAGE/$VERSION/source/$TARBALL"
15 DEPENDS="cairo ossp-uuid libxml2 libvorbis libssl freerdp libvncserver \
16 libssh2 pango pulseaudio libjson-c libsndfile flac bzlib zlib"
17 BUILD_DEPENDS="cairo-dev ossp-uuid-dev libxml2-dev openssl-dev jpeg-dev \
18 libvncserver-dev freerdp-dev libvorbis-dev pango-dev pulseaudio-dev \
19 libssh2-dev xorg-dev libjson-c-dev libsndfile-dev flac-dev dbus-dev \
20 libgcrypt-dev"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 ./configure \
26 --prefix=/usr \
27 --mandir=/usr/share/man \
28 $CONFIGURE_ARGS &&
29 make -j 1 &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib
37 cp -a $install/usr/sbin $fs/usr
38 cp -a $install/usr/lib/*.so* $fs/usr/lib
39 }