Date: Saturday, August 22, 2015 @ 08:01:31 Author: fyan Revision: 138626
addpkg: toxcore 3496-1 Added: toxcore/ toxcore/repos/ toxcore/trunk/ toxcore/trunk/PKGBUILD ----------+ PKGBUILD | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) Added: toxcore/trunk/PKGBUILD =================================================================== --- toxcore/trunk/PKGBUILD (rev 0) +++ toxcore/trunk/PKGBUILD 2015-08-22 06:01:31 UTC (rev 138626) @@ -0,0 +1,50 @@ +# $Id$ +# Maintainer: Felix Yan <[email protected]> +# Contributor: HÃ¥vard Pettersson <[email protected]> +# Contributor: naxuroqa <naxuroqa at gmail.com> +# Contributor: Boohbah <boohbah at gmail.com> +# Contributor: Kevin MacMartin <prurigro at gmail dot com> + +pkgname=toxcore +pkgver=3496 +pkgrel=1 +pkgdesc='Secure, configuration-free, P2P Skype replacement backend' +arch=('i686' 'x86_64') +url='https://tox.chat' +license=('GPL3') +depends=('libconfig>=1.4' + 'libsodium>=1.0' + 'libvpx' + 'opus') +makedepends=('git' 'check') +conflicts=("tox") +provides=("tox") +source=("git+https://github.com/irungentoo/toxcore.git") +sha512sums=('SKIP') + +pkgver() { + cd $pkgname + git rev-list --count HEAD +} + +build() { + cd $pkgname + autoreconf -if + ./configure \ + --prefix=/usr \ + --enable-daemon \ + --disable-ntox \ + --disable-tests + make +} + +check() { + cd $pkgname + make check +} + +package() { + cd $pkgname + make DESTDIR="$pkgdir" install + install -Dm644 ./other/bootstrap_daemon/tox-bootstrapd.service "$pkgdir/usr/lib/systemd/system/tox-bootstrapd.service" +} Property changes on: toxcore/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
