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