aboutsummaryrefslogtreecommitdiffstats
path: root/community/weechat/APKBUILD
blob: 7c4a75887d30402dd4aa4b0a1d7b72bf7d0de146 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
pkgname=weechat
pkgver=2.7
pkgrel=0
pkgdesc="A fast, light, extensible ncurses-based chat client"
url="https://weechat.org"
arch="all"
options="!check" # test suite runs "sudo make install"
license="GPL-3.0-or-later"
depends_dev="asciidoctor
	     cmake
	     gettext-dev
	     ncurses-dev
	     gnutls-dev
	     libgcrypt-dev
	     curl-dev
	     aspell-dev
	     lua-dev
	     perl-dev
	     python3-dev
	     ruby-dev
	     zlib-dev
	    "

makedepends="$depends_dev"
subpackages="$pkgname-dev
	     $pkgname-doc
	     $pkgname-lang
	     $pkgname-spell:_plugin
	     $pkgname-lua:_plugin
	     $pkgname-perl:_plugin
	     $pkgname-python:_plugin
	     $pkgname-ruby:_plugin
	    "
source="https://www.weechat.org/files/src/weechat-$pkgver.tar.gz"

# secfixes:
#   1.7.1-r0:
#   - CVE-2017-8073
#   1.9.1-r0:
#   - CVE-2017-14727

build() {
	mkdir -p build
	cd build
	cmake .. \
		-DCMAKE_INSTALL_PREFIX=/usr \
		-DENABLE_MAN=ON \
		-DENABLE_TCL=OFF \
		-DENABLE_GUILE=OFF \
		-DENABLE_JAVASCRIPT=OFF \
		-DENABLE_PHP=OFF
	make
}

package() {
	cd "$builddir"/build
	make DESTDIR="$pkgdir/" install
}

_plugin() {
	local _name=${subpkgname#*-}
	local _dir=usr/lib/weechat/plugins

	pkgdesc="WeeChat $_name plugin"
	depends="weechat"

	# as of 2.5 aspell has been renamed to spell on weechat upstream
	# since it now supports enchant as well, rename the subpackage and
	# replace the old one
	if [ "$_name" = spell ]; then
		replaces="$pkgname-aspell"
		provides="$pkgname-aspell=$pkgver-r$pkgrel"
	fi

	mkdir -p "$subpkgdir"/$_dir
	mv "$pkgdir"/$_dir/"$_name".so "$subpkgdir"/$_dir
}

check() {
	./tools/build-test.sh cmake
}

sha512sums="7a9205b6a3b7e338b14708e1b9aad4f2099506c46b1e86faf4fa94a105bc20b056a53ce3d003ae31ea1cdbab711ddd9dca7258a7d03f0f7af3703ebdbdfeb3d9  weechat-2.7.tar.gz"