[arch-commits] Commit in bzrtp/repos (2 files)

2019-12-09 Thread Antonio Rojas via arch-commits
Date: Monday, December 9, 2019 @ 21:19:32
  Author: arojas
Revision: 536442

archrelease: copy trunk to community-staging-x86_64

Added:
  bzrtp/repos/community-staging-x86_64/
  bzrtp/repos/community-staging-x86_64/PKGBUILD
(from rev 536441, bzrtp/trunk/PKGBUILD)

--+
 PKGBUILD |   30 ++
 1 file changed, 30 insertions(+)

Copied: bzrtp/repos/community-staging-x86_64/PKGBUILD (from rev 536441, 
bzrtp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-09 21:19:32 UTC (rev 536442)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=bzrtp
+pkgver=4.3
+pkgrel=1
+pkgdesc="Opensource implementation of ZRTP keys exchange protocol"
+arch=(x86_64)
+url="https://github.com/BelledonneCommunications/bzrtp;
+license=(GPL2)
+depends=(libxml2 bctoolbox sqlite)
+makedepends=(bcunit cmake)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/BelledonneCommunications/bzrtp/archive/$pkgver.tar.gz;)
+sha256sums=('bd9739b973af1e957ff39f613b5995514657a80152994c5c111a75843da4257e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_STATIC=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in bzrtp/repos (2 files)

2018-09-22 Thread Kyle Keen via arch-commits
Date: Saturday, September 22, 2018 @ 15:33:15
  Author: kkeen
Revision: 384157

archrelease: copy trunk to community-staging-x86_64

Added:
  bzrtp/repos/community-staging-x86_64/
  bzrtp/repos/community-staging-x86_64/PKGBUILD
(from rev 384156, bzrtp/trunk/PKGBUILD)

--+
 PKGBUILD |   28 
 1 file changed, 28 insertions(+)

Copied: bzrtp/repos/community-staging-x86_64/PKGBUILD (from rev 384156, 
bzrtp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-09-22 15:33:15 UTC (rev 384157)
@@ -0,0 +1,28 @@
+# Maintainer:
+# Contributor: Antonio Rojas 
+
+pkgname=bzrtp
+pkgver=1.0.6
+pkgrel=3
+pkgdesc="Opensource implementation of ZRTP keys exchange protocol"
+arch=('x86_64')
+url="https://github.com/BelledonneCommunications/bzrtp;
+license=('GPL2')
+depends=('libxml2' 'mbedtls' 'bctoolbox')
+makedepends=('bcunit')
+validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/BelledonneCommunications/bzrtp/archive/$pkgver.tar.gz;)
+sha256sums=('d551cf45372a180319fd93d7b59823ccff169dc41f67a777932c83def8019260')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  CFLAGS="$CFLAGS -Wno-error=cast-function-type"
+  [ -x ./configure ] || ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in bzrtp/repos (2 files)

2018-02-07 Thread Kyle Keen via arch-commits
Date: Thursday, February 8, 2018 @ 00:00:19
  Author: kkeen
Revision: 290121

archrelease: copy trunk to community-staging-x86_64

Added:
  bzrtp/repos/community-staging-x86_64/
  bzrtp/repos/community-staging-x86_64/PKGBUILD
(from rev 290120, bzrtp/trunk/PKGBUILD)

--+
 PKGBUILD |   28 
 1 file changed, 28 insertions(+)

Copied: bzrtp/repos/community-staging-x86_64/PKGBUILD (from rev 290120, 
bzrtp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-02-08 00:00:19 UTC (rev 290121)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer:
+# Contributor: Antonio Rojas 
+
+pkgname=bzrtp
+pkgver=1.0.6
+pkgrel=2
+pkgdesc="Opensource implementation of ZRTP keys exchange protocol"
+arch=('x86_64')
+url="https://github.com/BelledonneCommunications/bzrtp;
+license=('GPL2')
+depends=('libxml2' 'mbedtls' 'bctoolbox')
+makedepends=('bcunit')
+validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/BelledonneCommunications/bzrtp/archive/$pkgver.tar.gz;)
+sha256sums=('d551cf45372a180319fd93d7b59823ccff169dc41f67a777932c83def8019260')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  [ -x ./configure ] || ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}