blob: d53e1b0422c88a55b524597af22c0e6cb4abb2b2 (
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
|
pkgname=weechat-git
pkgver=1.0.r77.gf91f57f
pkgrel=1
pkgdesc="Fast, light & extensible IRC client (curses UI)"
url="http://www.weechat.org/"
arch=('i686' 'x86_64')
license=('GPL3')
depends=('gnutls' 'ncurses-git' 'libgcrypt')
optdepends=('perl' 'python' 'lua' 'tcl' 'ruby' 'aspell')
makedepends=('git' 'cmake' 'pkgconfig' 'perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell')
provides=('weechat')
conflicts=('weechat')
options=(!makeflags)
source=("git+https://github.com/weechat/weechat.git")
md5sums=('SKIP')
pkgver(){
cd weechat
git describe --long | sed -E 's/^v//;s/-rc/rc/;s/([^-]*-g)/r\1/;s/-/./g'
}
build() {
cd weechat
cmake -DPREFIX=/usr \
-DENABLE_PYTHON3=ON \
-DPYTHON_EXECUTABLE=/usr/bin/python \
-DPYTHON_LIBRARY=/usr/lib/libpython3.so\
-DENABLE_MAN=ON \
-DENABLE_DOC=OFF \
-DWEECHAT_HOME=~/.config/weechat
make
}
package() {
make -C weechat DESTDIR="$pkgdir" install
}
|