summaryrefslogblamecommitdiff
path: root/user/weechat/APKBUILD
blob: 2a1a5d558b1541aebe1c6d939a2c9b508d403b01 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                          
               
          
        

                                                           
          
                                                  


                                                                          


                                                                      

                                                                    
                                

                         










































                                                                                                  

                                                                                                                                                                
                                                                                                                                                    
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
pkgname=weechat
pkgver=2.2
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-aspell:_plugin $pkgname-lua:_plugin
	$pkgname-perl:_plugin $pkgname-python:_plugin $pkgname-lang"
source="https://www.weechat.org/files/src/$pkgname-$pkgver.tar.gz
	fix-python-linking.patch
	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

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

check() {
	cd "$builddir"/build
	ctest -V
}

sha512sums="aa729ce8cd0e398d7f5f3155db3bff473885d64ad444ca7f10b2f9874e90e31205783119ec4c31fca65de0a7c636cd5fe605d40bbbd31cb09893f20cc4332375  weechat-2.2.tar.gz
95f6d1405141421fae70288ec560a6d61f0bde1ce0bfa6e522e24a9673e699099594e83511b39e413aff28010ea1f7f1672af051ac370b152c732d6ca36a9056  fix-python-linking.patch
59841bc343b1d10a542631eb01380789f96cac896380dbb3b159444c4806bd6367952e457b9ffd42fb87c1e19fc77eba78c38fd2178ef202ab9f7f1a543417ca  libintl-fix.patch"