blob: 65119f253fb9d5619160ee8d3dbf8b0d1ccb8f01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Maintainer: Matt R <dev at rhoatech.com>
# Contributor: Christian Hesse <mail at eworm.de>
# Contributor: Sergej Pupykin <pupykin.s+arch at gmail.com> ([community] package)
pkgname=remmina-git
pkgver=1.4.35.r3.gced994a29
pkgrel=1
pkgdesc='A remote desktop client written in GTK+ - git checkout'
arch=(i686 x86_64)
url='http://www.remmina.org/'
license=('GPL-2.0-or-later')
depends=('zlib' 'libjpeg' 'libssh' 'avahi' 'vte3'
'libgcrypt' 'libxdmcp' 'libvncserver'
'libsecret' 'webkit2gtk-4.1' 'libsodium')
makedepends=('git' 'intltool' 'pkgconfig' 'cmake' 'avahi'
'libxkbfile' 'freerdp' 'gobject-introspection'
'spice' 'spice-gtk' 'spice-protocol' 'kwallet5' 'gtk-vnc'
'docbook-xsl' 'libpulse' 'libappindicator-gtk3')
optdepends=('avahi' 'libxkbfile' 'gobject-introspection' 'spice' 'spice-gtk' 'spice-protocol' 'pyhoca-cli')
provides=('remmina' 'grdc' "grdc=${pkgver}" 'remmina-plugins')
conflicts=('remmina' 'grdc')
install=remmina.install
source=('git+https://gitlab.com/remmina/remmina.git')
sha256sums=('SKIP')
pkgver() {
cd remmina/
if GITTAG="$(git describe --abbrev=0 --tags 2>/dev/null)"; then
printf '%s.r%s.g%s' \
"$(sed -e "s/^${pkgname%%-git}//" -e 's/^[-_/a-zA-Z]\+//' -e 's/^\.//' -e 's/[-_+]/./g' <<< ${GITTAG})" \
"$(git rev-list --count ${GITTAG}..)" \
"$(git rev-parse --short HEAD)"
else
printf '0.r%s.g%s' \
"$(git rev-list --count master)" \
"$(git rev-parse --short HEAD)"
fi
}
build() {
cd remmina/
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DWITH_FREERDP_MASTER=ON \
-DWITH_CUPS=ON \
-DWITH_LIBSSH=ON \
-DWITH_NEWS=ON \
-DWITH_KF5WALLET=ON \
-DWITH_PYTHONLIBS=OFF \
-DWITH_GVNC=ON \
-DWITH_X2GO=ON \
.
make
}
package() {
cd remmina/
make DESTDIR="${pkgdir}/" install
}
|