summaryrefslogtreecommitdiffstats
path: root/bzrtp/PKGBUILD
blob: 5ee4e990ede3bc6315572e63f9d608a8bb22b556 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# $Id$
# Maintainer:
# Contributor: Guillaume Horel <guillaume.horel@gmail.com>

pkgname=bzrtp
pkgver=1.0.4
pkgrel=1
pkgdesc="Implementation of the ZRTP protocol"
arch=('i686' 'x86_64')
url="http://www.linphone.org/"
license=('GPL')
depends=('bctoolbox')
makedepends=('')
source=("https://github.com/BelledonneCommunications/$pkgname/archive/$pkgver.tar.gz")
md5sums=('0f36322012dd6cc248aa356555744a8e')

build() {
  cd "${srcdir}"
  mkdir build
  cd build
  cmake -DENABLE_STATIC=NO -DCMAKE_INSTALL_LIBDIR="/usr/lib" -DCMAKE_INSTALL_PREFIX="/usr" "../$pkgname-$pkgver"
  make
}

package() {
  cd "${srcdir}/build"
  make DESTDIR="${pkgdir}" install
}