blob: 44e516271144932a548c384dc725865c7c9f4469 (
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
|
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
# Contributor: Patrick Burroughs (Celti) <celticmadman@gmail.com>
# Contributor: Dave Reisner <dreisner@archlinux.org>
# Contributor: Florian Bruhin (The-Compiler) <archlinux.org@the-compiler.org>
# Maintainer: Kaleb Elwert (belak) <belak@coded.io>
pkgname=bitlbee-git
pkgver=3.4.1.r25.gf5bbaba
pkgrel=1
pkgdesc='Brings instant messaging (XMPP, MSN, Yahoo!, AIM, ICQ, Twitter) to IRC'
url='http://www.bitlbee.org/'
license=('GPL')
arch=('i686' 'x86_64')
depends=('gnutls' 'glib2')
makedepends=('git' 'libotr')
optdepends=('skype4py: to use skyped'
'libotr: for OTR encryption support')
source=('bitlbee::git+https://github.com/bitlbee/bitlbee'
'bitlbee.tmpfiles')
sha1sums=('SKIP'
'3695ed2fe22436c4d0fc3ead829f7d1f89bc491c')
backup=('etc/bitlbee/bitlbee.conf'
'etc/bitlbee/motd.txt')
install=bitlbee.install
provides=('bitlbee')
conflicts=('bitlbee' 'bitlbee-bzr')
pkgver() {
cd "$srcdir/bitlbee"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "$srcdir/bitlbee"
./configure \
--prefix=/usr \
--etcdir=/etc/bitlbee \
--sbindir=/usr/bin \
--pidfile=/run/bitlbee/bitlbee.pid \
--ipcsocket=/run/bitlbee/bitlbee.sock \
--systemdsystemunitdir=/usr/lib/systemd/system \
--ssl=gnutls \
--strip=0 \
--otr=plugin \
--skype=plugin
make
}
package() {
cd "$srcdir/bitlbee"
make DESTDIR="$pkgdir" install{,-etc,-dev,-systemd}
install -o65 -g65 -dm770 "$pkgdir/var/lib/bitlbee"
install -Dm644 "$srcdir/bitlbee.tmpfiles" "$pkgdir/usr/lib/tmpfiles.d/bitlbee.conf"
}
|