New package: toxic-0.5.2_1

This commit is contained in:
Stefan Mühlinghaus 2015-03-24 23:55:46 +01:00 committed by Stefan Mühlinghaus
parent c3ec3765d2
commit c9e0658577
2 changed files with 25 additions and 1 deletions

View file

@ -1,7 +1,8 @@
# Template file for 'toxcore-git'
pkgname="toxcore-git"
version="20150313"
revision=1
revision=2
_commithash="4ad76497881ee2a623acdedcf0ac10406208b716"
short_desc="Encrypted peer-to-peer instant messenger protocol library"
maintainer="Stefan Mühlinghaus <jazzman@alphabreed.com>"
license="GPL-3"
@ -15,6 +16,7 @@ do_fetch() {
}
pre_configure() {
git checkout ${_commithash}
./autogen.sh
}

22
srcpkgs/toxic/template Normal file
View file

@ -0,0 +1,22 @@
# Template file for 'toxic'
pkgname="toxic"
version="0.5.2"
revision=1
_commithash="0c39e7b158ff74a2ef4ed62a72b5b7a3c878ac7f"
short_desc="NCurses-based TOX instant messanger client"
maintainer="Stefan Mühlinghaus <jazzman@alphabreed.com>"
license="GPL-3"
homepage="https://wiki.tox.im/Toxic"
depends="toxcore-git>=20150313_2"
makedepends="toxcore-devel-git>=20150313_2 libX11-devel freealut-devel libconfig-devel ncurses-libs ncurses-devel>=5.9_10 libopenal-devel libnotify-devel libvpx-devel libsodium-devel opus-devel"
hostmakedepends="git pkg-config"
build_style="gnu-makefile"
make_install_args="-C build ${make_install_args}"
make_build_args="${make_install_args}"
do_fetch() {
git clone https://github.com/Tox/toxic.git ${wrksrc}
cd "${wrksrc}"
git checkout ${_commithash}
}