blob: 3776d522d9f0736501547bab3972754f665cbf62 (
plain) (
tree)
|
|
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
# Contributor: zlg <zlg+adelie@zlg.space>
# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
pkgname=weechat
pkgver=2.5
pkgrel=0
pkgdesc="Fast, light, extensible ncurses-based chat client"
url="https://www.weechat.org"
arch="all"
options="!check" # requires all plugins be built.
license="GPL-3.0+"
depends_dev="cmake aspell-dev curl-dev gnutls-dev libgcrypt-dev lua5.3-dev
ncurses-dev perl-dev python3-dev zlib-dev"
makedepends="$depends_dev"
checkdepends="cpputest"
subpackages="$pkgname-dev $pkgname-spell:_plugin $pkgname-lua:_plugin
$pkgname-perl:_plugin $pkgname-python:_plugin $pkgname-lang"
source="https://www.weechat.org/files/src/$pkgname-$pkgver.tar.gz
libintl-fix.patch
"
# secfixes:
# 1.7.1-r0:
# - CVE-2017-8073
# 1.9.1-r0:
# - CVE-2017-14727
prepare() {
cd "$builddir"
default_prepare
}
build() {
cd "$builddir"
mkdir -p build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DENABLE_MAN=ON -DENABLE_TESTS=ON -DENABLE_PYTHON3=ON
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"
if [ "$_name" = python ]; then
depends="$depends python3"
fi
if [ "$_name" = spell ]; then
provides="$pkgname-aspell=$pkgver-r$pkgrel"
fi
mkdir -p "$subpkgdir"/$_dir
mv "$pkgdir"/$_dir/${_name}.so "$subpkgdir"/$_dir
}
check() {
cd "$builddir"/build
ctest -V
}
sha512sums="1bf16c76e63668fc6d4b72d521f71980717b08bd2abc5c7f0825af32e6de9327c5c967067bfb025a0404eee627f54cecdd9f1f2b3618ea7a08798d8510a2487b weechat-2.5.tar.gz
59841bc343b1d10a542631eb01380789f96cac896380dbb3b159444c4806bd6367952e457b9ffd42fb87c1e19fc77eba78c38fd2178ef202ab9f7f1a543417ca libintl-fix.patch"
|