blob: a5c00ac5e215db49a1848dbf368ffcf0f8389301 (
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
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=pidgin-sipe
pkgver=1.23.2
pkgrel=2
pkgdesc="Pidgin protocol plugin to connect to MS Office Communicator"
url="http://sipe.sourceforge.net/"
arch="all"
license="GPL-2.0-or-later"
makedepends="zlib-dev pidgin-dev e2fsprogs-dev intltool
heimdal-dev libxml2-dev glib-dev nss-dev libnice-dev gstreamer0.10-dev
gmime-dev"
subpackages="$pkgname-lang"
source="https://downloads.sourceforge.net/project/sipe/sipe/pidgin-sipe-$pkgver/pidgin-sipe-$pkgver.tar.bz2"
builddir="$srcdir/$pkgname-$pkgver"
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--enable-purple \
--disable-telepathy \
--without-vv
make
}
check() {
cd "$builddir"
make check
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
}
sha512sums="ff63b4f71f3179ebf7f1071c0ee2659ca8e6eaaf2d6380b19175b028742eb4e6680e033ba6905448c91a9ba72057e60ea4c91fcf6dc2aa5e09dc7d17bac165c3 pidgin-sipe-1.23.2.tar.bz2"
|