blob: 8cec211ace11f69c0fd835e4e01420d496dbbeee (
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
|
# Maintainer: Hugo Osvaldo Barrera <hugo@barrera.io>
# Contributor: Sebastian Ullrich <echo c2ViYXN0aUBudWxscmkuY2gK|base64 -d>
# Contributor: lishengming.zju <lishengming.zju@gmail.com>
# Maintainer: Solomon Choina <shlomochoina@gmail.com
pkgname=('pidgin-hg') #'libpurple-hg' 'finch-hg')
_hgname=pidgin
pkgver=3.r42589.8627951788d1
pkgrel=1
provides=("pidgin" "libpurple" "finch")
conflicts=("pidgin" "libpurple" "finch")
pkgdesc="Multi-protocol instant messaging client. Latest mercurial build."
arch=('i686' 'x86_64')
url="http://pidgin.im/"
license=('GPL')
depends=('enchant' 'libgadu' 'gplugin-hg' 'gmime3' 'qt5-base'
'talkatu-hg' 'libgnt3-hg' 'meanwhile' 'farstream'
'libsasl' 'libidn' 'nss' 'kwallet5' 'hasl-hg'
'libgnome-keyring' 'startup-notification' 'gtkspell'
'libxss' 'libsm' 'dbus-glib' 'json-glib' 'libadwaita' 'birb-hg' 'xeme-hg')
optdepends=('avahi: Bonjour protocol support'
'ca-certificates: SSL CA certificates'
'python-dbus: for purple-remote and purple-url-handler'
'tk: Tcl/Tk scripting support'
'aspell: for spelling correction')
makedepends=('mercurial' 'avahi' 'tk' "gobject-introspection" 'ca-certificates' 'intltool'
'tk' 'ca-certificates' 'intltool' 'networkmanager'
'startup-notification' 'gtkspell' 'libxss' 'libsm'
'hicolor-icon-theme' 'dbus-glib' 'json-glib' 'vala'
'farstream' 'libsasl' 'gtk-doc' 'nss' 'cmake'
'libgnome-keyring' 'gi-docgen')
makedepends+=('libx11' 'meson')
options=('!libtool')
source=('pidgin::hg+https://keep.imfreedom.org/pidgin/pidgin#branch=default')
sha256sums=('SKIP')
pkgver() {
cd "$srcdir"/pidgin
printf "3.r%s.%s" "$(hg identify -n)" "$(hg identify -i)"
}
build() {
arch-meson pidgin build \
-Dkwallet=enabled \
-Ddoc=true \
-Dunity-integration=disabled \
-Davahi=enabled \
-Dlibgadu=enabled
ninja -C build
}
package(){
# For linking
DESTDIR=$pkgdir ninja -C build install
}
|