void-packages/srcpkgs/toxcore/template
Michael Gehring fd91f03d93 toxcore: update to 0.1.9.
Closes: #6820 [via git-merge-pr]
2017-06-23 12:33:54 -07:00

39 lines
1 KiB
Bash

# Template file for 'toxcore'
pkgname=toxcore
version=0.1.9
revision=1
build_style=gnu-configure
wrksrc="c-toxcore-${version}"
hostmakedepends="autoconf automake libtool pkg-config"
makedepends="libsodium-devel opus-devel libvpx-devel"
short_desc="Encrypted peer-to-peer instant messenger protocol library"
maintainer="Spencer Hill <spencernh77@gmail.com>"
license="GPL-3"
homepage="https://tox.chat"
distfiles="https://github.com/TokTok/c-toxcore/archive/v${version}.tar.gz"
checksum=f3613c2e315a481473eb3914248b632de6872af0a4912338b733e1df02eb60f8
configure_args="--enable-daemon"
system_accounts="toxbootstrapd"
toxbootstrapd_homedir="/etc/toxbootstrapd"
make_dirs="/etc/toxbootstrapd 0700 toxbootstrapd toxbootstrapd"
replaces="toxcore-git>=0"
pre_configure() {
./autogen.sh
}
post_install() {
vsv toxbootstrapd
}
# Development package
toxcore-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/include
vmove usr/lib/*.a
vmove usr/lib/pkgconfig
}
}