Created
August 12, 2014 13:58
-
-
Save 1davidmichael/84ea776918692ad5a360 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Black_Codec <[email protected]> | |
pkgname=guacamole-server | |
pkgver=0.9.2 | |
pkgrel=1 | |
pkgdesc="Guacamole proxy daemon" | |
arch=('i686' 'x86_64') | |
url="http://guacamole.sourceforge.net/" | |
license=('GPL3') | |
replaces=('guacd' | |
'libguac' | |
'libguac-client-ssh' | |
'libguac-client-vnc' | |
'libguac-client-rdp') | |
depends=('pango' 'openssl' 'libvorbis') | |
makedepends=('libpulse' 'libvorbis' | |
'openssl' 'libssh' | |
'libvncserver' 'pango' 'libtelnet' | |
'freerdp' 'uuid') | |
optdepends=('libssh: for ssh protocol support' | |
'libvncserver: for vnc protocol support' | |
'freerdp: for rdp protocol support' | |
'libpulse: for pulseaudio support' | |
'libtelnet: for telnet protocol support' | |
) | |
source=("http://downloads.sourceforge.net/project/guacamole/current/source/$pkgname-$pkgver.tar.gz" | |
'guacd.service') | |
md5sums=('fc674f26efb8125771f342b7e9098cd6' | |
'fc71eab0f9a7f11fad7686267e3bd143') | |
build() { | |
cd "$srcdir"/$pkgname-$pkgver | |
./configure --prefix=/usr | |
make | |
} | |
package() { | |
cd "$srcdir"/$pkgname-$pkgver | |
make DESTDIR="$pkgdir" install | |
mkdir -p "$pkgdir"/etc/systemd/system/ | |
install -Dm644 "$srcdir"/guacd.service "$pkgdir"/etc/systemd/system/ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment