31 lines
978 B
Bash
31 lines
978 B
Bash
# Template file for 'toxcore'
|
|
pkgname=toxcore
|
|
version=0.2.11
|
|
revision=1
|
|
wrksrc="c-toxcore-${version}"
|
|
build_style=cmake
|
|
configure_args="-DMUST_BUILD_TOXAV=ON -DBUILD_TOXAV=ON"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="libconfig-devel libsodium-devel libvpx-devel opus-devel"
|
|
short_desc="Encrypted peer-to-peer instant messenger protocol library"
|
|
maintainer="Spencer Hill <spencernh77@gmail.com>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://tox.chat"
|
|
changelog="https://raw.githubusercontent.com/TokTok/c-toxcore/master/CHANGELOG.md"
|
|
distfiles="https://github.com/TokTok/c-toxcore/archive/v${version}.tar.gz"
|
|
checksum=f111285b036d7746ce8d1321cf0b89ec93b4fad8ae90767a24e50230bbee27e1
|
|
|
|
post_install() {
|
|
vsconf other/bootstrap_daemon/tox-bootstrapd.conf
|
|
}
|
|
|
|
toxcore-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|