aboutsummaryrefslogtreecommitdiffstats
path: root/testing/guacamole-server/APKBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'testing/guacamole-server/APKBUILD')
-rw-r--r--testing/guacamole-server/APKBUILD63
1 files changed, 0 insertions, 63 deletions
diff --git a/testing/guacamole-server/APKBUILD b/testing/guacamole-server/APKBUILD
deleted file mode 100644
index 26f69893581..00000000000
--- a/testing/guacamole-server/APKBUILD
+++ /dev/null
@@ -1,63 +0,0 @@
-# Contributor:
-# Maintainer:
-pkgname=guacamole-server
-pkgver=1.3.0
-pkgrel=0
-pkgdesc="clientless remote desktop gateway server"
-url="https://guacamole.apache.org"
-arch="all !mips64" # Tests fail
-license="GPL-3.0-or-later"
-makedepends="cairo-dev libjpeg-turbo-dev libpng-dev ossp-uuid-dev ffmpeg-dev
- freerdp-dev pango-dev libssh2-dev libvncserver-dev pulseaudio-dev
- openssl-dev libvorbis-dev libwebp-dev perl libwebsockets-dev cunit-dev
- "
-subpackages="$pkgname-doc $pkgname-dev"
-source="http://apache.org/dyn/closer.cgi?action=download&filename=guacamole/$pkgver/source/guacamole-server-$pkgver.tar.gz
- "
-
-build() {
- # Disables erroring out on functions that are deprecated
- # like 'av_init_packet' and 'VerifyCertificate'
- CFLAGS="$CFLAGS -Wno-error=deprecated-declarations" \
- ./configure \
- --build=$CBUILD \
- --host=$CHOST \
- --prefix=/usr \
- --sysconfdir=/etc \
- --mandir=/usr/share/man \
- --localstatedir=/var \
- --disable-static \
- --with-libavcodec \
- --with-libavutil \
- --with-libswscale \
- --with-ssl \
- --without-winsock \
- --with-vorbis \
- --with-pulse \
- --with-pango \
- --with-terminal \
- --with-vnc \
- --with-rdp \
- --with-ssh \
- --without-telnet \
- --with-webp \
- --with-websockets
- make
-}
-
-check() {
- # 4 Tests fail on s390x
- # test_common 10
- # test_common 12
- # test_common 13
- # test_common 14
- [ "$CARCH" = s390x ] && return 0
- make check
-}
-
-package() {
- make DESTDIR="$pkgdir" install
-}
-sha512sums="
-35f2619db5479bc2d6b502c3838dc7bbb697c467c3166e659b5eec5be6aeef699588f8baee0c7847aa3d9a7857eb06789153b8e33b2b3dc883bf769240c87a96 guacamole-server-1.3.0.tar.gz
-"