2015-03-24 21:20:19 +01:00
|
|
|
# Template file for 'toxcore-git'
|
|
|
|
pkgname="toxcore-git"
|
2015-07-22 22:34:30 +02:00
|
|
|
version="20150604"
|
|
|
|
revision=1
|
|
|
|
_commithash="c259250abb86a01ae7e3fc906380417427f38ca1"
|
2015-03-24 21:20:19 +01:00
|
|
|
short_desc="Encrypted peer-to-peer instant messenger protocol library"
|
|
|
|
maintainer="Stefan Mühlinghaus <jazzman@alphabreed.com>"
|
|
|
|
license="GPL-3"
|
|
|
|
homepage="https://tox.im"
|
|
|
|
makedepends="libsodium-devel opus-devel libvpx-devel"
|
2015-03-26 13:24:09 +01:00
|
|
|
hostmakedepends="autoconf automake libtool pkg-config"
|
|
|
|
distfiles="https://github.com/irungentoo/toxcore/archive/${_commithash}.tar.gz"
|
2015-07-22 22:34:30 +02:00
|
|
|
checksum=22180cb14302a3c25b089b84cab85a2f55a45f8c81a48bff4aa3897d4ad92c87
|
2015-03-26 13:24:09 +01:00
|
|
|
wrksrc="toxcore-${_commithash}"
|
2015-03-24 21:20:19 +01:00
|
|
|
build_style="gnu-configure"
|
|
|
|
|
|
|
|
pre_configure() {
|
|
|
|
./autogen.sh
|
|
|
|
}
|
|
|
|
|
|
|
|
# Development package
|
|
|
|
toxcore-devel-git_package() {
|
|
|
|
short_desc+=" - development files"
|
|
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
|
|
pkg_install() {
|
|
|
|
vmove usr/include
|
|
|
|
vmove usr/lib/*.a
|
|
|
|
vmove usr/lib/pkgconfig
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|