blob: 6fa98320dd411ec58c2d513b7aff102e25b52bae (
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
|
# $Id: PKGBUILD 72899 2012-06-24 16:20:06Z bpiotrowski $
# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
# Contributor: Mateusz Herych <heniekk@gmail.com>
pkgname=ekg2
pkgver=0.3.1
pkgrel=5
pkgdesc="ncurses based Jabber, Gadu-Gadu, Tlen and IRC client"
arch=('i686' 'x86_64')
url="http://ekg2.org/"
license=('GPL')
depends=('aspell' 'libjpeg' 'python2' 'libgadu' 'gnutls' 'gpm' 'libidn' 'giflib')
optdepends=('xosd: xosd support'
'sqlite: sqlite support'
'gtk2: gtk support')
source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('68fc05b432c34622df6561eaabef5a40')
build() {
cd "$srcdir/$pkgname-$pkgver"
sed -i 's|ncursesw/ncurses.h|ncurses.h|g' configure plugins/ncurses/ecurses.h
export PYTHON=/usr/bin/python2 #EKG2 isn't python3 friendly
./configure --prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/ekg2 \
--with-libgadu \
--with-xosd \
--enable-unicode \
--enable-shared \
--without-gpg
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
rm -rf "$pkgdir"/usr/lib/perl5/core_perl/perllocal.pod
rm -rf "$pkgdir"/usr/libexec
chmod -R 755 "$pkgdir"/usr/lib/perl5
chmod +s "$pkgdir"/usr/lib/ekg2/ioctld
}
|