32 lines
738 B
Bash
32 lines
738 B
Bash
|
# Template file for 'toxcore-git'
|
||
|
pkgname="toxcore-git"
|
||
|
version="20150313"
|
||
|
revision=1
|
||
|
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"
|
||
|
hostmakedepends="git autoconf automake libtool pkg-config"
|
||
|
build_style="gnu-configure"
|
||
|
|
||
|
do_fetch() {
|
||
|
git clone https://github.com/irungentoo/toxcore.git ${wrksrc}
|
||
|
}
|
||
|
|
||
|
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
|
||
|
}
|
||
|
}
|
||
|
|