wok-next annotate vmware-view-open-client/receipt @ rev 18042
ppp/ppp.cgi: misc fixes
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon May 11 16:08:11 2015 +0200 (2015-05-11) |
parents | 76b72f1ad63c |
children | 2f3aba6cc31e |
rev | line source |
---|---|
pascal@13591 | 1 # SliTaz package receipt. |
pascal@13591 | 2 |
pascal@13591 | 3 PACKAGE="vmware-view-open-client" |
pascal@13591 | 4 VERSION="4.5.0-297975" |
pascal@13591 | 5 SOURCE="VMware-view-open-client-source" |
pascal@13591 | 6 CATEGORY="network" |
pascal@13591 | 7 SHORT_DESC="Connection tools to remote Windows desktops managed by VMware View." |
pascal@13591 | 8 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@14996 | 9 LICENSE="LGPL2.1" |
pascal@13591 | 10 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@13591 | 11 WEB_SITE="http://code.google.com/p/$PACKAGE/" |
pascal@13591 | 12 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL" |
pascal@13591 | 13 |
pascal@13591 | 14 DEPENDS="gtk+ libssl libxml2 curl libboost-signals icu bzlib" |
pascal@13591 | 15 BUILD_DEPENDS="gtk+-dev openssl-dev libxml2-dev curl-dev libboost-dev \ |
pascal@13591 | 16 libboost-signals-dev icu-dev icu intltool" |
pascal@13591 | 17 |
pascal@13591 | 18 # Rules to configure and make the package. |
pascal@13591 | 19 compile_rules() |
pascal@13591 | 20 { |
pascal@13591 | 21 cd $src |
pascal@17670 | 22 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lX11" |
pascal@13591 | 23 sed -i 's|.*curl/types|// &|' lib/bora/basicHttp/http.c |
pascal@13591 | 24 ./configure --prefix=/usr \ |
pascal@13591 | 25 $CONFIGURE_ARGS && \ |
pascal@13591 | 26 make && make DESTDIR=$DESTDIR install |
pascal@13591 | 27 } |
pascal@13591 | 28 |
pascal@13591 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@13591 | 30 genpkg_rules() |
pascal@13591 | 31 { |
pascal@13591 | 32 cp -a $install/* $fs |
pascal@13591 | 33 } |
pascal@13591 | 34 |